cloudaxe-opencode/package.json

94 lines
2.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-10-31 19:07:36 +00:00
"description": "AI-powered development tool",
2025-05-23 18:17:45 +00:00
"private": true,
"type": "module",
2025-12-13 19:00:03 +00:00
"packageManager": "bun@1.3.4",
2025-05-27 19:20:43 +00:00
"scripts": {
2025-10-31 19:07:36 +00:00
"dev": "bun run --cwd packages/opencode --conditions=browser src/index.ts",
2025-09-17 07:33:54 +00:00
"typecheck": "bun turbo typecheck",
2025-10-31 19:07:36 +00:00
"prepare": "husky",
"random": "echo 'Random script'",
"hello": "echo 'Hello World!'"
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/*",
"packages/sdk/js",
"packages/slack"
],
"catalog": {
2025-12-13 19:00:03 +00:00
"@types/bun": "1.3.4",
2025-08-08 17:22:54 +00:00
"@hono/zod-validator": "0.4.2",
2025-10-31 19:07:36 +00:00
"ulid": "3.0.1",
"@kobalte/core": "0.13.11",
"@types/luxon": "3.7.1",
"@types/node": "22.13.9",
2025-07-31 05:00:29 +00:00
"@tsconfig/node22": "22.0.2",
"@tsconfig/bun": "1.0.9",
"@cloudflare/workers-types": "4.20251008.0",
"@openauthjs/openauth": "0.0.0-20250322224806",
2025-12-15 16:56:03 +00:00
"@pierre/diffs": "1.0.0-beta.3",
2025-10-16 19:53:44 +00:00
"@tailwindcss/vite": "4.1.11",
"diff": "8.0.2",
"ai": "5.0.97",
"hono": "4.10.7",
"hono-openapi": "1.1.2",
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",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"zod": "4.1.8",
2025-08-29 15:58:17 +00:00
"remeda": "2.26.0",
2025-10-17 17:05:52 +00:00
"solid-list": "0.3.0",
"tailwindcss": "4.1.11",
2025-10-17 17:05:52 +00:00
"virtua": "0.42.3",
2025-10-14 12:14:26 +00:00
"vite": "7.1.4",
"@solidjs/meta": "0.29.4",
"@solidjs/router": "0.15.4",
2025-11-23 17:55:24 +00:00
"@solidjs/start": "https://pkg.pr.new/@solidjs/start@dfb2020",
"solid-js": "1.9.10",
"vite-plugin-solid": "2.11.10"
}
},
2025-05-23 18:17:45 +00:00
"devDependencies": {
"@tsconfig/bun": "catalog:",
2025-09-26 06:01:08 +00:00
"husky": "9.1.7",
"prettier": "3.6.2",
2025-11-08 15:15:35 +00:00
"sst": "3.17.23",
2025-09-17 07:33:54 +00:00
"turbo": "2.5.6"
2025-05-23 18:17:45 +00:00
},
2025-10-12 04:40:48 +00:00
"dependencies": {
"@aws-sdk/client-s3": "3.933.0",
2025-10-27 11:48:03 +00:00
"@opencode-ai/script": "workspace:*",
2025-11-27 01:31:12 +00:00
"@opencode-ai/sdk": "workspace:*",
"typescript": "catalog:"
2025-10-12 04:40:48 +00:00
},
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
],
2025-10-10 21:37:03 +00:00
"overrides": {
"@types/bun": "catalog:",
"@types/node": "catalog:"
},
"patchedDependencies": {
"ghostty-web@0.3.0": "patches/ghostty-web@0.3.0.patch"
2025-09-03 17:56:47 +00:00
}
2025-05-23 18:17:45 +00:00
}