This repository was archived by the owner on Feb 17, 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
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
{
"name": "plannotator-webview",
"displayName": "Plannotator",
"description": "Opens Plannotator plan reviews inside VS Code tabs instead of an external browser",
"version": "0.5.1",
"publisher": "7tg",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/7tg/plannotator-vscode"
},
"bugs": {
"url": "https://github.com/7tg/plannotator-vscode/issues"
},
"icon": "images/icon.png",
"categories": ["Other"],
"keywords": ["plannotator", "plan review", "claude", "ai", "webview"],
"engines": {
"vscode": "^1.85.0"
},
"extensionKind": ["workspace", "ui"],
"main": "./dist/extension.cjs",
"type": "module",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "plannotator-webview.openUrl",
"title": "Plannotator: Open URL in Simple Browser"
}
],
"configuration": {
"title": "Plannotator",
"properties": {
"plannotatorWebview.injectBrowser": {
"type": "boolean",
"default": true,
"description": "Inject PLANNOTATOR_BROWSER env var into integrated terminals to redirect plannotator to VS Code."
}
}
}
},
"scripts": {
"build": "bun run ./scripts/build.ts",
"watch": "bun run ./scripts/watch.ts",
"test": "bun test",
"lint": "tsc --noEmit",
"vsce-package": "vsce package --no-dependencies",
"package": "bun run build && bun run vsce-package",
"clean": "rm -rf ./dist"
},
"devDependencies": {
"@types/bun": "latest",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.24.0",
"typescript": "^5.0.0"
}
}