-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.71 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.71 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
73
74
75
76
{
"name": "pi-task",
"version": "0.1.4",
"description": "Task subagent extension for the pi coding agent with background lifecycle visibility, resume, process supervision, and final-result retrieval.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/pi-task",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/pi-task.git"
},
"bugs": {
"url": "https://github.com/code-yeongyu/pi-task/issues"
},
"keywords": [
"pi",
"pi-mono",
"pi-coding-agent",
"senpi",
"pi-extension",
"task",
"subagent",
"background-agents",
"typescript"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src",
"scripts",
"docs",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsgo --noEmit && biome check .",
"qa:import": "node scripts/qa-import.mjs",
"qa:status-scope": "node scripts/qa-status-scope.mjs",
"qa:child-tools": "node scripts/qa-child-tools.mjs",
"qa:process-kill": "node scripts/qa-process-kill.mjs",
"qa:senpi-install": "node scripts/qa-senpi-install.mjs --dry-run"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"typebox": "*"
},
"dependencies": {
"yaml": "^2.8.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.7.0",
"@typescript/native-preview": "^7.0.0-dev.20260512.1",
"jiti": "^2.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}