Files
stanza/packages/schema/package.json
T

53 lines
1.1 KiB
JSON

{
"name": "@withstanza/schema",
"version": "0.0.0",
"description": "JSON Schema and contract types for the Stanza manifest (stanza.json).",
"keywords": [
"json-schema",
"monorepo",
"stanza"
],
"homepage": "https://stanza.tools",
"bugs": "https://github.com/jakejarvis/stanza/issues",
"license": "MIT",
"author": "Jake Jarvis <jake@jarv.is>",
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/stanza.git",
"directory": "packages/schema"
},
"files": [
"dist"
],
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"access": "public"
},
"scripts": {
"build": "vp pack"
},
"dependencies": {
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@withstanza/utils": "workspace:*",
"typescript": "^6.0.3",
"vite-plus": "catalog:",
"vitest": "catalog:"
}
}