cloudaxe-opencode/package.json

65 lines
1.4 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-10-10 21:37:03 +00:00
"packageManager": "bun@1.3.0",
2025-05-27 19:20:43 +00:00
"scripts": {
2025-09-27 08:12:55 +00:00
"dev": "bun run packages/opencode/src/index.ts",
2025-09-17 07:33:54 +00:00
"typecheck": "bun turbo typecheck",
2025-09-26 06:01:08 +00:00
"prepare": "husky"
2025-05-27 19:20:43 +00:00
},
"workspaces": {
"packages": [
2025-07-31 05:00:29 +00:00
"packages/*",
2025-09-18 14:59:01 +00:00
"packages/console/*",
2025-07-31 05:00:29 +00:00
"packages/sdk/js"
],
"catalog": {
2025-10-10 21:37:03 +00:00
"@types/bun": "1.3.0",
2025-08-08 17:22:54 +00:00
"@hono/zod-validator": "0.4.2",
"@kobalte/core": "0.13.11",
"@types/node": "22.13.9",
2025-07-31 05:00:29 +00:00
"@tsconfig/node22": "22.0.2",
2025-08-09 00:42:22 +00:00
"ai": "5.0.8",
2025-07-29 20:39:48 +00:00
"hono": "4.7.10",
2025-09-19 11:05:05 +00:00
"fuzzysort": "3.1.0",
"luxon": "3.6.1",
2025-07-29 20:39:48 +00:00
"typescript": "5.8.2",
"zod": "4.1.8",
2025-08-29 15:58:17 +00:00
"remeda": "2.26.0",
"solid-js": "1.9.9"
}
},
2025-05-23 18:17:45 +00:00
"devDependencies": {
2025-10-10 22:11:19 +00:00
"@tsconfig/bun": "1.0.9",
2025-09-26 06:01:08 +00:00
"husky": "9.1.7",
"prettier": "3.6.2",
2025-10-11 18:38:45 +00:00
"sst": "3.17.19",
2025-09-17 07:33:54 +00:00
"turbo": "2.5.6"
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",
2025-08-13 19:46:21 +00:00
"sharp",
"tree-sitter",
"tree-sitter-bash",
"web-tree-sitter"
2025-06-17 15:27:07 +00:00
],
"patchedDependencies": {
2025-09-03 17:56:47 +00:00
"@solidjs/start@1.1.7": "patches/@solidjs%2Fstart@1.1.7.patch"
2025-10-10 21:37:03 +00:00
},
"overrides": {
"@types/bun": "catalog:"
2025-09-03 17:56:47 +00:00
}
2025-05-23 18:17:45 +00:00
}