-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.99 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
{
"name": "opencode-agent-orchestration-kit",
"version": "1.0.38",
"private": false,
"license": "Apache-2.0",
"type": "module",
"bin": {
"oak": "scripts/oak.mjs",
"oc-switch": "scripts/oc-switch.mjs"
},
"files": [
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"NOTICE.md",
"README.md",
"SECURITY.md",
"compatibility.json",
"docker/",
"docs/",
"doctor.sh",
"env.example",
"install.sh",
"opencode/",
"rollback.sh",
"scripts/",
"supply-chain.json",
"uninstall.sh",
"upgrade.sh"
],
"engines": {
"node": "^22.9.0 || ^24.0.0"
},
"scripts": {
"check:version": "node scripts/version.mjs --check",
"check:compatibility": "node scripts/check-compatibility.mjs",
"check:supply-chain": "node scripts/check-supply-chain.mjs",
"contract-check": "bash scripts/check.sh",
"unit-and-script-tests": "node --test scripts/*.test.mjs opencode/scripts/*.test.mjs",
"typecheck": "npm --prefix opencode exec -- tsc --noEmit --jsx preserve --jsxImportSource @opentui/solid --module NodeNext --moduleResolution NodeNext --target ES2022 --strict --skipLibCheck opencode/plugins/token-tree-usage.tsx opencode/plugins/shell-export-guard.ts",
"dependency-audit": "npm --prefix opencode audit --omit=dev --audit-level=low",
"dependency-signature-audit": "npm --prefix opencode audit signatures",
"installation-smoke": "bash scripts/install-smoke.sh",
"package-smoke": "bash scripts/package-smoke.sh",
"oc-switch": "node scripts/oc-switch.mjs",
"check:quick": "npm run contract-check",
"check": "npm run contract-check && npm run unit-and-script-tests",
"check:release": "npm --prefix opencode ci --ignore-scripts && npm run check && npm run typecheck && npm run dependency-audit && npm run dependency-signature-audit && npm run installation-smoke && npm run package-smoke",
"lint": "npm run contract-check",
"format": "echo 'No formatter configured. Markdown and shell are intentionally plain.'"
}
}