kunkun/packages/schema/package.json
Huakun Shen 402208e95a
Feature: license check (#67)
* feat: add required license field to manifest

* chore: add license MIT to all templates

* feat: add license check to jsr and npm validation

* fix: supabase export

split every item into its own subexport for better debugability

* fix: supabase imports

* feat: hide app when escape is pressed

* fix: update package version in api test from 0.0.6 to 0.0.20

* fix: update test for kunkun extension with new version and commit details

* fix: update kunkun extension test to use version 0.0.4

* fix: update kunkun extension test to reflect new version 0.0.20 and updated commit details

* feat: display downloads in extension details

* feat: add downloads display to store
2025-01-18 22:55:43 -05:00

32 lines
787 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",
"@kksh/supabase": "workspace:*",
"@supabase/supabase-js": "^2.47.16",
"@valibot/to-json-schema": "1.0.0-beta.4"
},
"peerDependencies": {
"@kksh/supabase": "workspace:*",
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@kksh/api": "workspace:*",
"valibot": "^1.0.0-beta.10"
}
}