-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.1 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": "pi-worktrunk",
"version": "0.9.2",
"description": "Worktrunk commands, session placement, status, and agent tools for pi",
"type": "module",
"files": [
"worktrunk.ts",
"README.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi",
"pi-extension",
"worktrunk",
"git-worktree",
"status",
"commands",
"agent-tools",
"session-placement"
],
"author": "Matthias Vallentin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mavam/pi-worktrunk.git"
},
"engines": {
"node": ">=24.0.0"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"scripts": {
"check": "tsc --noEmit && node --test --experimental-strip-types *.test.ts",
"test": "node --test --experimental-strip-types *.test.ts"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.0"
},
"publishConfig": {
"access": "public"
},
"pi": {
"extensions": [
"./worktrunk.ts"
]
}
}