-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.13 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
81
82
83
84
{
"name": "@alexeiled/pi-plan-exec",
"version": "1.1.0",
"description": "Turn a Markdown execution plan into an isolated, resumable Pi run - durable controller state, one writer, deliberate recovery",
"keywords": [
"pi-package",
"pi-extension",
"pi-command",
"pi-skill",
"plan-execution",
"ralphex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexei-led/pi-plan-exec.git"
},
"homepage": "https://github.com/alexei-led/pi-plan-exec#readme",
"bugs": {
"url": "https://github.com/alexei-led/pi-plan-exec/issues"
},
"type": "module",
"main": "./src/index.ts",
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"files": [
"src/*.ts",
"skills/exec-plan"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "tsc --noEmit",
"test": "node --import jiti/register --test test/*.test.ts",
"lint": "eslint . --cache --cache-strategy content",
"pack:dry": "node scripts/check-pack.mjs",
"test:all": "npm run lint && npm run check && npm test && npm run pack:dry"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
],
"image": "https://raw.githubusercontent.com/alexei-led/pi-plan-exec/main/assets/plan-exec-card.png"
},
"peerDependencies": {
"@alexeiled/pi-fusion": ">=0.7.0",
"@alexeiled/pi-subagents-bridge": ">=0.3.0",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@tintinweb/pi-tasks": ">=0.9.0",
"pi-subagents": ">=0.60.0",
"typebox": "*"
},
"peerDependenciesMeta": {
"@alexeiled/pi-fusion": {
"optional": true
},
"@alexeiled/pi-subagents-bridge": {
"optional": true
},
"@tintinweb/pi-tasks": {
"optional": true
},
"pi-subagents": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.84.4",
"@eslint/js": "^10.0.1",
"@tintinweb/pi-tasks": "0.9.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"pi-subagents": "0.60.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
}
}