kunkun/packages/schema/package.json
Huakun Shen 1b8a99d897
Refactor: use pnpm catalog (#49)
* refactor: more packages moved to use catalog

* chore: version update

* refactor: fix a import path
2025-01-06 20:32:13 -05:00

30 lines
707 B
JSON

{
"name": "@kksh/schema",
"type": "module",
"exports": {
".": {
"import": "./index.ts"
}
},
"scripts": {
"build": "bun scripts/print-schema.ts > manifest-json-schema.json",
"test": "bun test --coverage",
"upload-schema-to-supabase": "bun scripts/upload-schema-to-supabase.ts",
"upload-schema-to-s3": "bun scripts/upload-schema-to-s3.ts",
"print-schema": "bun scripts/print-schema.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@valibot/to-json-schema": "1.0.0-beta.3"
},
"peerDependencies": {
"@kksh/supabase": "workspace:*",
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@kksh/api": "workspace:*",
"valibot": "catalog:"
}
}