package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@standard-schema/spec",
  3. "description": "A family of specs for interoperable TypeScript",
  4. "version": "1.1.0",
  5. "license": "MIT",
  6. "author": "Colin McDonnell",
  7. "homepage": "https://standardschema.dev",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/standard-schema/standard-schema"
  11. },
  12. "keywords": [
  13. "typescript",
  14. "schema",
  15. "validation",
  16. "standard",
  17. "interface"
  18. ],
  19. "type": "module",
  20. "main": "./dist/index.js",
  21. "types": "./dist/index.d.ts",
  22. "exports": {
  23. ".": {
  24. "standard-schema-spec": "./src/index.ts",
  25. "import": {
  26. "types": "./dist/index.d.ts",
  27. "default": "./dist/index.js"
  28. },
  29. "require": {
  30. "types": "./dist/index.d.cts",
  31. "default": "./dist/index.cjs"
  32. }
  33. }
  34. },
  35. "sideEffects": false,
  36. "files": [
  37. "dist"
  38. ],
  39. "publishConfig": {
  40. "access": "public"
  41. },
  42. "devDependencies": {
  43. "tsup": "^8.3.0",
  44. "typescript": "^5.6.2"
  45. },
  46. "scripts": {
  47. "lint": "pnpm biome lint ./src",
  48. "format": "pnpm biome format --write ./src",
  49. "check": "pnpm biome check ./src",
  50. "build": "tsup"
  51. }
  52. }