mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* remove supabase package * upgrade valibot * removed supabase package Migration not complete yet * update submodule * fixed some supabase errors * Add new fields to extension models - Added `id` field to `ExtPublish` - Expanded `DBExtension` with multiple new properties: - `api_version`, `author_id`, `created_at`, - `downloads`, `icon`, `identifier`, - `long_description`, `name`, - `readme`, `short_description`, - and `tarball_size` * Refactor: clean up unused Supabase imports - Removed commented-out Supabase imports from various files to streamline the codebase. - Updated `created_at` type in `ExtPublish` model from `date` to `string` for consistency. * update icon enum to union * fix type errors after removing supabase * format * more types fixed * feat: enhance command handling and update SDK version
30 lines
701 B
JSON
30 lines
701 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",
|
|
"@supabase/supabase-js": "^2.48.0",
|
|
"@valibot/to-json-schema": "1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.583.0",
|
|
"@kksh/api": "workspace:*",
|
|
"valibot": "^1.0.0"
|
|
}
|
|
}
|