mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

* refactor: add a valibot schema for package registry validation * fix: list view action menu * chore: bump version to 0.1.16 in package.json * refactor: extract supabase package from api * ci: remove NODE_OPTIONS from build step and improve error handling in getLatestNpmPkgVersion function
24 lines
433 B
JSON
24 lines
433 B
JSON
{
|
|
"name": "@kksh/supabase",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prepare": "bun setup.ts"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./models": "./src/models.ts",
|
|
"./types": "./src/database.types.ts"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@supabase/ssr": "^0.5.2",
|
|
"@supabase/supabase-js": "^2.47.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|