-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 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
{
"name": "@prinova/pi-github-tools",
"version": "1.0.1",
"description": "GitHub repository tools extension for pi-coding-agent",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build"
},
"pi": {
"extensions": ["./src/index.ts"]
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.51.0",
"@mariozechner/pi-tui": "^0.51.0",
"@sinclair/typebox": "^0.34.41"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": ">=0.30.0"
},
"keywords": [
"pi-package",
"github",
"pi-extension",
"coding-agent",
"git",
"repository"
],
"author": "PriNova info@prinova.de",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PriNova/pi-github-tools.git"
},
"bugs": {
"url": "https://github.com/PriNova/pi-github-tools/issues"
},
"homepage": "https://github.com/PriNova/pi-github-tools#readme",
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"fast-xml-parser": "5.3.4"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
}
}