package.json 493 B

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