cloudaxe-opencode/package.json

48 lines
993 B
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": {
2025-07-03 19:43:25 +00:00
"dev": "bun run packages/opencode/src/index.ts",
2025-06-19 04:20:03 +00:00
"typecheck": "bun run --filter='*' typecheck",
"stainless": "bun run ./packages/opencode/src/index.ts serve ",
2025-06-19 04:20:03 +00:00
"postinstall": "./scripts/hooks"
2025-05-27 19:20:43 +00:00
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"typescript": "5.8.2",
"@types/node": "22.13.9",
"zod": "3.24.2",
2025-06-14 22:43:58 +00:00
"ai": "4.3.16"
}
},
2025-05-23 18:17:45 +00:00
"devDependencies": {
"prettier": "3.5.3",
2025-06-19 03:38:03 +00:00
"sst": "3.17.6"
2025-05-23 18:17:45 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/sst/opencode"
},
"license": "MIT",
"prettier": {
"semi": false
},
"overrides": {
"zod": "3.24.2"
},
"trustedDependencies": [
"esbuild",
2025-05-27 18:36:23 +00:00
"protobufjs",
"sharp"
2025-06-17 15:27:07 +00:00
],
"patchedDependencies": {
"ai@4.3.16": "patches/ai@4.3.16.patch"
2025-06-27 15:35:57 +00:00
}
2025-05-23 18:17:45 +00:00
}