opencode_offline/packages/console/core/package.json

53 lines
1.7 KiB
JSON
Raw Normal View History

2025-08-09 01:22:54 +08:00
{
"$schema": "https://json.schemastore.org/package.json",
2025-10-05 09:33:39 +08:00
"name": "@opencode-ai/console-core",
2026-02-17 03:57:09 +08:00
"version": "1.2.6",
2025-08-09 01:22:54 +08:00
"private": true,
"type": "module",
"license": "MIT",
2025-08-09 01:22:54 +08:00
"dependencies": {
"@aws-sdk/client-sts": "3.782.0",
2025-10-03 01:58:38 +08:00
"@jsx-email/render": "1.1.1",
2025-10-05 09:33:39 +08:00
"@opencode-ai/console-mail": "workspace:*",
"@opencode-ai/console-resource": "workspace:*",
2025-09-02 15:14:56 +08:00
"@planetscale/database": "1.19.0",
2025-10-02 07:34:37 +08:00
"aws4fetch": "1.0.20",
"drizzle-orm": "catalog:",
2025-08-09 06:39:47 +08:00
"postgres": "3.4.7",
2025-08-09 01:22:54 +08:00
"stripe": "18.0.0",
2025-11-01 03:07:36 +08:00
"ulid": "catalog:",
2025-10-11 06:11:19 +08:00
"zod": "catalog:"
2025-08-09 01:22:54 +08:00
},
"exports": {
2026-02-11 06:14:59 +08:00
"./*.js": "./src/*.ts",
2025-08-09 01:22:54 +08:00
"./*": "./src/*"
},
"scripts": {
2025-09-02 15:18:13 +08:00
"db": "sst shell drizzle-kit",
2025-09-12 06:30:13 +08:00
"db-dev": "sst shell --stage dev -- drizzle-kit",
2025-09-12 05:21:49 +08:00
"db-prod": "sst shell --stage production -- drizzle-kit",
2026-02-05 09:56:34 +08:00
"shell": "sst shell",
"shell-dev": "sst shell --stage dev",
"shell-prod": "sst shell --stage production",
2025-09-27 03:18:22 +08:00
"update-models": "script/update-models.ts",
"promote-models-to-dev": "script/promote-models.ts dev",
"promote-models-to-prod": "script/promote-models.ts production",
2025-11-25 04:24:43 +08:00
"pull-models-from-dev": "script/pull-models.ts dev",
2026-01-15 05:03:02 +08:00
"pull-models-from-prod": "script/pull-models.ts production",
2026-01-07 12:34:10 +08:00
"update-black": "script/update-black.ts",
"promote-black-to-dev": "script/promote-black.ts dev",
"promote-black-to-prod": "script/promote-black.ts production",
2025-10-15 06:30:32 +08:00
"typecheck": "tsgo --noEmit"
2025-08-09 01:22:54 +08:00
},
"devDependencies": {
"@cloudflare/workers-types": "catalog:",
2025-10-11 06:11:19 +08:00
"@tsconfig/node22": "22.0.2",
2025-10-11 06:17:10 +08:00
"@types/bun": "1.3.0",
"@types/node": "catalog:",
"drizzle-kit": "catalog:",
2025-10-12 03:08:45 +08:00
"mysql2": "3.14.4",
2025-10-15 06:30:32 +08:00
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
2025-08-09 01:22:54 +08:00
}
}