mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 11:14:23 +01:00
34 lines
937 B
JSON
34 lines
937 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@opencode/console-core",
|
|
"version": "0.14.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@aws-sdk/client-sts": "3.782.0",
|
|
"@opencode/console-resource": "workspace:*",
|
|
"@planetscale/database": "1.19.0",
|
|
"aws4fetch": "1.0.20",
|
|
"drizzle-orm": "0.41.0",
|
|
"postgres": "3.4.7",
|
|
"stripe": "18.0.0",
|
|
"ulid": "3.0.0"
|
|
},
|
|
"exports": {
|
|
"./*": "./src/*"
|
|
},
|
|
"scripts": {
|
|
"db": "sst shell drizzle-kit",
|
|
"db-dev": "sst shell --stage dev -- drizzle-kit",
|
|
"db-prod": "sst shell --stage production -- drizzle-kit",
|
|
"update-models": "script/update-models.ts",
|
|
"promote-models-to-dev": "script/promote-models.ts dev",
|
|
"promote-models-to-prod": "script/promote-models.ts production",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"drizzle-kit": "0.30.5",
|
|
"mysql2": "3.14.4"
|
|
}
|
|
}
|