-
Notifications
You must be signed in to change notification settings - Fork 550
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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": "@plannotator/pi-extension",
"version": "0.25.1",
"type": "module",
"description": "Plannotator Pi extension - interactive plan review with annotations, annotate agent messages, and review code/PRs",
"author": "backnotprop",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/backnotprop/plannotator.git",
"directory": "apps/pi-extension"
},
"homepage": "https://github.com/backnotprop/plannotator",
"bugs": {
"url": "https://github.com/backnotprop/plannotator/issues"
},
"keywords": [
"pi-package",
"plannotator",
"plan-review",
"ai-agent",
"coding-agent"
],
"pi": {
"extensions": [
"./"
]
},
"files": [
"index.ts",
"annotate-outcome.ts",
"assistant-message.ts",
"browser-session-error.ts",
"current-pi-session.ts",
"plannotator-browser.ts",
"plannotator-browser-runtime.ts",
"plannotator-events.ts",
"server.ts",
"tool-scope.ts",
"config.ts",
"plannotator.json",
"server/",
"todo-providers/",
"generated/",
"README.md",
"plannotator.html",
"review-editor.html"
],
"scripts": {
"build": "cp ../hook/dist/index.html plannotator.html && cp ../hook/dist/review.html review-editor.html && bash vendor.sh",
"prepublishOnly": "cd ../.. && bun run build:pi"
},
"dependencies": {
"@joplin/turndown-plugin-gfm": "^1.0.64",
"@pierre/diffs": "1.2.8",
"@plannotator/webtui": "0.1.0",
"chokidar": "^5.0.0",
"diff": "^8.0.4",
"parse5": "^7.3.0",
"turndown": "^7.2.4"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.74.0"
},
"devDependencies": {
"glimpseui": "^0.8.0",
"@earendil-works/pi-coding-agent": ">=0.74.0",
"@earendil-works/pi-agent-core": ">=0.74.0",
"@earendil-works/pi-ai": ">=0.74.0",
"@earendil-works/pi-tui": ">=0.74.0"
}
}