-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 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
{
"name": "open-plan-annotator",
"version": "1.2.1",
"type": "module",
"description": "Fully local plugin for interactive plan annotation from your Agentic assistants",
"author": "ndom91",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ndom91/open-plan-annotator.git"
},
"keywords": [
"claude-code",
"opencode",
"plugin",
"plan-mode",
"annotation",
"code-review"
],
"workspaces": [
"packages/*",
"ui"
],
"main": "opencode/index.js",
"bin": {
"open-plan-annotator": "bin/open-plan-annotator.mjs"
},
"files": [
"bin/open-plan-annotator.mjs",
"shared/cliHelp.mjs",
"shared/cliMode.mjs",
"shared/packageManager.mjs",
"shared/updateMessage.mjs",
"shared/runtimeResolver.mjs",
"shared/updateHints.mjs",
"shared/versionInfo.mjs",
".claude-plugin/",
"opencode/bridge.js",
"opencode/config.js",
"opencode/index.js",
"hooks/",
"CLAUDE.md",
"README.md"
],
"scripts": {
"test": "bun test",
"typecheck": "tsgo --noEmit --project ui/tsconfig.json && tsgo --noEmit --project server/tsconfig.json",
"build:ui": "cd ui && bun run vite build",
"build:platforms": "bun scripts/build-platforms.mjs",
"build": "bun run build:ui && bun run build:platforms",
"release": "bun run build",
"pack:check": "bun scripts/check-package-files.mjs",
"dev:ui": "cd ui && bun run vite --port 5173",
"dev:server": "NODE_ENV=development bun run server/index.ts",
"dev": "NODE_ENV=development bun run server/index.ts & cd ui && bun run vite --port 5173",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"do-release": "./scripts/release.sh",
"prepack": "bun scripts/claude-pack-docs.mjs prepack",
"postpack": "bun scripts/claude-pack-docs.mjs postpack"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^25.3.0",
"@types/bun": "^1.3.9",
"@typescript/native-preview": "^7.0.0-dev.20260224.1"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.14"
},
"optionalDependencies": {
"@open-plan-annotator/runtime-darwin-arm64": "1.2.1",
"@open-plan-annotator/runtime-darwin-x64": "1.2.1",
"@open-plan-annotator/runtime-linux-arm64": "1.2.1",
"@open-plan-annotator/runtime-linux-x64": "1.2.1"
},
"packageManager": "[email protected]"
}