-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.8 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "pi-diff",
"version": "0.1.3",
"private": false,
"description": "Tree-inspired pi extension for reviewing session and git diffs.",
"type": "module",
"engines": {
"node": ">=22"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-diff",
"diff"
],
"files": [
"src",
"docs",
"README.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"check": "npm run format:check && npm run lint && npm run typecheck && npm run test",
"ci": "npm run check && npm run pack:check && npm run pack:smoke",
"dev:pi": "pi -e .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 src test vitest.config.ts",
"lint:fix": "npm run lint -- --fix",
"pack:check": "npm pack --dry-run --ignore-scripts",
"pack:smoke": "node scripts/verify-package-extension.mjs",
"prepack": "npm run check",
"release:verify": "npm run check && npm run pack:check && npm run pack:smoke",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.69.0",
"@mariozechner/pi-tui": "^0.69.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phongndo/pi-diff"
}
}