cloudaxe-opencode/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2025-05-23 18:17:45 +00:00
{
2025-05-27 19:20:43 +00:00
"$schema": "https://json.schemastore.org/package.json",
2025-05-31 00:47:56 +00:00
"name": "opencode",
2025-05-23 18:17:45 +00:00
"private": true,
"type": "module",
2025-05-27 19:20:43 +00:00
"packageManager": "bun@1.2.14",
"scripts": {
"dev": "bun run --conditions=development packages/opencode/src/index.ts",
2025-06-19 04:20:03 +00:00
"typecheck": "bun run --filter='*' typecheck",
2025-07-08 13:08:53 +00:00
"stainless": "./scripts/stainless",
2025-07-31 05:25:24 +00:00
"postinstall": "./script/hooks"
2025-05-27 19:20:43 +00:00
},
"workspaces": {
"packages": [
2025-08-08 17:22:54 +00:00
"cloud/*",
2025-07-31 05:00:29 +00:00
"packages/*",
"packages/sdk/js"
],
"catalog": {
2025-08-08 17:22:54 +00:00
"@hono/zod-validator": "0.4.2",
"@types/node": "22.13.9",
2025-07-31 05:00:29 +00:00
"@tsconfig/node22": "22.0.2",
"ai": "5.0.0-beta.34",
2025-07-29 20:39:48 +00:00
"hono": "4.7.10",
"typescript": "5.8.2",
"zod": "3.25.49",
"remeda": "2.26.0"
}
},
2025-08-08 17:22:54 +00:00
"dependencies": {
"pulumi-stripe": "0.0.24"
},
2025-05-23 18:17:45 +00:00
"devDependencies": {
"prettier": "3.5.3",
2025-07-04 00:30:02 +00:00
"sst": "3.17.8"
2025-05-23 18:17:45 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/sst/opencode"
},
"license": "MIT",
"prettier": {
"semi": false,
"printWidth": 120
2025-05-23 18:17:45 +00:00
},
"trustedDependencies": [
2025-08-03 07:37:53 +00:00
"esbuild",
2025-05-27 18:36:23 +00:00
"protobufjs",
"sharp"
2025-06-17 15:27:07 +00:00
],
"patchedDependencies": {}
2025-05-23 18:17:45 +00:00
}