package.json 513 B

1234567891011121314151617181920212223
  1. {
  2. "name": "schemastery",
  3. "description": "Type driven schema validator",
  4. "version": "3.18.0",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.cjs",
  8. "module": "lib/index.mjs",
  9. "types": "lib/types/index.d.ts",
  10. "files": [
  11. "lib/index.mjs",
  12. "lib/index.cjs",
  13. "lib/types/**/*.d.ts",
  14. "lib/types/**/*.d.ts.map",
  15. "src"
  16. ],
  17. "author": "Shigma <shigma10826@gmail.com>",
  18. "license": "MIT",
  19. "dependencies": {
  20. "@standard-schema/spec": "^1.1.0",
  21. "cosmokit": "^1.8.1"
  22. }
  23. }