-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "@lpirito/pi-diffloop",
"version": "1.0.0",
"description": "Pair programming with Pi, be aware of every change made to the codebase.",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"prepack": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "npm run build && npm run typecheck",
"release:dry": "npm run check && npm publish --dry-run",
"release": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"files": [
"src"
],
"keywords": [
"pi-package",
"pi-extension",
"diff-review",
"diff",
"agent-extension",
"review",
"code-review"
],
"author": "lucaspiritogit",
"license": "MIT",
"type": "module",
"dependencies": {
"cli-highlight": "^2.1.11",
"diff": "^8.0.2"
},
"pi": {
"extensions": [
"./src/diffloop.ts"
]
},
"devDependencies": {
"typescript": "^5"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.74.0 <1.0.0",
"@earendil-works/pi-tui": ">=0.74.0 <1.0.0",
"@sinclair/typebox": "*",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/lucaspiritogit/pi-diffloop"
}
}