chatgpt-api/packages/json-schema/package.json

62 wiersze
1.4 KiB
JSON

{
"name": "@agentic/json-schema",
"version": "0.0.1",
"description": "A JSON schema validator that will run on Cloudflare workers. Supports drafts 4, 7, 2019-09, and 2020-12.",
"authors": [
"Jeremy Danyow <jdanyow@gmail.com>",
"Travis Fischer <travis@transitivebullsh.it>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "packages/json-schema"
},
"engines": {
"node": ">=18"
},
"type": "module",
"source": "./src/index.ts",
"types": "./src/index.ts",
"sideEffects": false,
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsup",
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"devDependencies": {
"json-schema-test-suite": "github:json-schema-org/JSON-Schema-Test-Suite#76b529f",
"ky": "catalog:",
"p-map": "catalog:"
},
"publishConfig": {
"access": "public",
"files": [
"dist"
],
"exports": {
"types": "./dist/index.ts",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
},
"keywords": [
"json-schema",
"jsonschema",
"json",
"schema",
"cloudflare",
"worker",
"workers",
"service-worker"
]
}