This repository was archived by the owner on Apr 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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
{
"name": "opencode-cc-camouflage",
"version": "0.1.0",
"description": "OpenCode companion maintenance plugin scaffold for camouflage development.",
"license": "MIT",
"private": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"opencode",
"plugin",
"companion",
"camouflage"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"LICENSE",
"NOTICE",
"README.md",
"docs/",
"patches/manifest.json",
"patches/**/*.patch"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
},
"./tui": {
"import": "./dist/tui/index.js",
"types": "./dist/tui/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"prepack": "npm run build",
"sync:public": "bash scripts/sync-public-copy.sh",
"status": "bun run src/tools/status-cli.ts",
"doctor": "bun run src/tools/doctor-cli.ts",
"typecheck": "tsc -p tsconfig.json",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"verify:patches:fixture": "bun test tests/integration/patches.test.ts",
"verify:patches": "bun run src/tools/patch-verify.ts",
"patch:apply": "bun run src/tools/patch-apply.ts",
"patch:revert": "bun run src/tools/patch-revert.ts",
"smoke:peer-auth": "bun run tests/integration/smoke-peer-auth.ts",
"smoke:peer-auth:status": "bun run tests/integration/smoke-peer-auth.ts --status-only",
"check:publish-safety": "bun run tests/integration/check-publish-safety.ts",
"build": "tsc -p tsconfig.build.json",
"compat:canary": "bun run scripts/compat-canary.ts"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.10",
"@types/diff": "^8.0.0",
"@types/node": "^22.15.15",
"typescript": "^5.9.3"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.13",
"diff": "^8.0.4"
}
}