package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "json-schema-typed",
  3. "description": "JSON Schema TypeScript definitions with complete inline documentation.",
  4. "license": "BSD-2-Clause",
  5. "version": "8.0.2",
  6. "homepage": "https://github.com/RemyRylan/json-schema-typed/tree/main/dist/node",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/RemyRylan/json-schema-typed.git"
  10. },
  11. "author": {
  12. "name": "Remy Rylan",
  13. "url": "https://github.com/RemyRylan"
  14. },
  15. "main": "./draft_2020_12.js",
  16. "types": "./draft_2020_12.d.ts",
  17. "type": "module",
  18. "exports": {
  19. ".": {
  20. "types": "./draft_2020_12.d.ts",
  21. "default": "./draft_2020_12.js"
  22. },
  23. "./draft-07": {
  24. "types": "./draft_07.d.ts",
  25. "default": "./draft_07.js"
  26. },
  27. "./draft-2019-09": {
  28. "types": "./draft_2019_09.d.ts",
  29. "default": "./draft_2019_09.js"
  30. },
  31. "./draft-2020-12": {
  32. "types": "./draft_2020_12.d.ts",
  33. "default": "./draft_2020_12.js"
  34. }
  35. },
  36. "keywords": [
  37. "jsonschema",
  38. "typescript",
  39. "types",
  40. "definitions",
  41. "json",
  42. "schema"
  43. ]
  44. }