kunkun/packages/extension/package.json
Huakun 48e2e47f96
Remove supabase (#263)
* 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
2025-03-26 08:50:55 -04:00

28 lines
584 B
JSON

{
"name": "@kksh/extension",
"module": "index.ts",
"type": "module",
"exports": {
".": "./src/index.ts",
"./db": "./src/db.ts",
"./load": "./src/load.ts",
"./utils": "./src/utils.ts",
"./window": "./src/window.ts",
"./install": "./src/install.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/semver": "^7.5.8"
},
"dependencies": {
"@kksh/api": "workspace:*",
"@std/semver": "npm:@jsr/std__semver@^1.0.4",
"@tauri-apps/plugin-upload": "^2.2.1",
"semver": "^7.7.1",
"uuid": "^11.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}