-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.06 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode",
"description": "AI-powered development tool",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "bun run --cwd packages/opencode dev",
"typecheck": "bun turbo typecheck",
"test": "bun run --cwd packages/opencode test",
"test:unit": "bun run --cwd packages/opencode test:unit",
"test:e2e": "bun run --cwd packages/opencode test:e2e",
"test:live": "bun run --cwd packages/opencode test:live",
"test:coverage": "bun run --cwd packages/opencode test:coverage",
"lint": "bun run --cwd packages/opencode lint",
"format": "bun run --cwd packages/opencode format",
"deadcode:knip": "bunx knip --no-progress",
"deadcode:ts-prune": "bunx ts-prune packages/opencode/src packages/plugin/src",
"deadcode:ts-unused": "bunx ts-unused-exports tsconfig.json --ignoreTestFiles --exitWithCount",
"deadcode:report": "bun run deadcode:knip && bun run deadcode:ts-prune && bun run deadcode:ts-unused",
"deadcode:ci": "bun run deadcode:report:ci:knip && bun run deadcode:report:ci:ts-prune && bun run deadcode:report:ci:ts-unused",
"deadcode:report:ci:knip": "mkdir -p .artifacts/deadcode && bun run deadcode:knip > .artifacts/deadcode/knip.txt 2>&1 || true",
"deadcode:report:ci:ts-prune": "mkdir -p .artifacts/deadcode && bun run deadcode:ts-prune > .artifacts/deadcode/ts-prune.txt 2>&1 || true",
"deadcode:report:ci:ts-unused": "mkdir -p .artifacts/deadcode && bun run deadcode:ts-unused > .artifacts/deadcode/ts-unused-exports.txt 2>&1 || true",
"check:loc": "bun run script/check-loc.ts --max 700",
"prepare": "husky"
},
"workspaces": {
"packages": [
"packages/*",
"packages/sdk/js"
],
"catalog": {
"@types/bun": "1.3.9",
"@types/node": "22.13.9",
"@tsconfig/node22": "22.0.2",
"@tsconfig/bun": "1.0.9",
"drizzle-kit": "1.0.0-beta.12-a5629fb",
"drizzle-orm": "1.0.0-beta.12-a5629fb",
"ai": "5.0.124",
"hono": "4.10.7",
"fuzzysort": "3.1.0",
"luxon": "3.6.1",
"marked": "17.0.1",
"typescript": "5.8.2",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"zod": "4.1.8",
"remeda": "2.26.0",
"shiki": "3.20.0"
}
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/node": "catalog:",
"husky": "9.1.7",
"knip": "^5.63.0",
"prettier": "3.6.2",
"ts-prune": "^0.10.3",
"ts-unused-exports": "^11.0.1",
"turbo": "2.5.6",
"typescript": "catalog:"
},
"dependencies": {
"@opencode-ai/plugin": "workspace:*",
"ink": "6.8.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/anomalyco/opencode"
},
"license": "MIT",
"prettier": {
"semi": false,
"printWidth": 120
},
"trustedDependencies": [
"esbuild",
"protobufjs",
"tree-sitter",
"tree-sitter-bash",
"web-tree-sitter"
],
"overrides": {
"@types/bun": "catalog:",
"@types/node": "catalog:"
}
}