-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.86 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
77
78
79
80
{
"name": "taskplane",
"version": "0.30.1",
"description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
"keywords": [
"pi-package",
"ai",
"agent",
"orchestration",
"task-runner",
"parallel"
],
"bin": {
"taskplane": "bin/taskplane.mjs"
},
"pi": {
"extensions": [
"./extensions/task-orchestrator.ts"
],
"skills": [
"./skills"
]
},
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"typecheck": "tsc --project extensions/tsconfig.ci.json --noEmit",
"lint": "biome lint --no-errors-on-unmatched .",
"lint:fix": "biome lint --write --no-errors-on-unmatched .",
"format": "biome format --write --no-errors-on-unmatched .",
"format:check": "biome format --no-errors-on-unmatched ."
},
"files": [
"bin/",
"dashboard/",
"extensions/task-orchestrator.ts",
"extensions/reviewer-extension.ts",
"extensions/taskplane/",
"skills/",
"templates/"
],
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@sinclair/typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"@earendil-works/pi-ai": {
"optional": true
}
},
"dependencies": {
"jiti": "^2.6.1",
"yaml": "^2.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^22.19.18",
"typescript": "5.6.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HenryLach/taskplane.git"
},
"homepage": "https://github.com/HenryLach/taskplane#readme",
"bugs": {
"url": "https://github.com/HenryLach/taskplane/issues"
},
"author": "Henry Lach"
}