-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.31 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.31 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
{
"name": "opencode-conductor-bridge",
"version": "1.2.1",
"main": "index.js",
"bin": {
"opencode-conductor-bridge": "bin/install.js"
},
"type": "module",
"scripts": {
"sync": "npx tsx scripts/sync-commands.ts",
"lint": "tsc --noEmit",
"verify:compat": "npx tsx scripts/verify-compat.ts",
"verify:docs": "npx tsx scripts/verify-docs.ts",
"maintenance": "git merge --abort || true && git reset --hard origin/main && git clean -fd && git submodule update --init --recursive && npm run sync && npx tsx scripts/setup-bridge.ts .",
"uninstall": "npx tsx scripts/uninstall-bridge.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"audit": "npm audit --audit-level=critical --registry=https://registry.npmjs.org",
"check": "npm run lint && npm run sync && npm run verify:compat && npm run verify:docs && npm run test:coverage"
},
"keywords": [],
"author": "Danilo Bardusco <danilo@bardusco.com>",
"license": "Apache-2.0",
"description": "Bridge Gemini Conductor's Context-Driven Development protocol to OpenCode.",
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"toml": "^3.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}