Files
stanza/packages/schema/package.json
T
jake 4df8d80c79 chore: bump deps and migrate .inputValidator.validator
- Update `@types/node`, `semver`, TanStack Router/Start, `posthog-node`, `shadcn`, `fumadocs-mdx`, and a handful of other minor dep bumps across the monorepo
- Upgrade pnpm to 11.5.2
- Replace deprecated `.inputValidator(…)` calls with `.validator(…)` on all server functions
2026-06-09 12:57:22 -04:00

53 lines
1.1 KiB
JSON

{
"name": "@withstanza/schema",
"version": "0.1.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": "catalog:",
"@withstanza/utils": "workspace:*",
"typescript": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
}
}