opencode/package.json

48 lines
993 B
JSON
Raw Normal View History

2025-05-24 02:17:45 +08:00
{
2025-05-28 03:20:43 +08:00
"$schema": "https://json.schemastore.org/package.json",
2025-05-31 08:47:56 +08:00
"name": "opencode",
2025-05-24 02:17:45 +08:00
"private": true,
"type": "module",
2025-05-28 03:20:43 +08:00
"packageManager": "bun@1.2.14",
"scripts": {
2025-07-04 03:43:25 +08:00
"dev": "bun run packages/opencode/src/index.ts",
2025-06-19 12:20:03 +08:00
"typecheck": "bun run --filter='*' typecheck",
"stainless": "bun run ./packages/opencode/src/index.ts serve ",
2025-06-19 12:20:03 +08:00
"postinstall": "./scripts/hooks"
2025-05-28 03:20:43 +08:00
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"typescript": "5.8.2",
"@types/node": "22.13.9",
"zod": "3.24.2",
2025-06-15 06:43:58 +08:00
"ai": "4.3.16"
}
},
2025-05-24 02:17:45 +08:00
"devDependencies": {
"prettier": "3.5.3",
2025-07-04 08:30:02 +08:00
"sst": "3.17.8"
2025-05-24 02:17:45 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/sst/opencode"
},
"license": "MIT",
"prettier": {
"semi": false
},
"overrides": {
"zod": "3.24.2"
},
"trustedDependencies": [
"esbuild",
2025-05-28 02:36:23 +08:00
"protobufjs",
"sharp"
2025-06-17 23:27:07 +08:00
],
"patchedDependencies": {
"ai@4.3.16": "patches/ai@4.3.16.patch"
2025-06-27 23:35:57 +08:00
}
2025-05-24 02:17:45 +08:00
}