-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.59 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
{
"name": "@pify/workflow",
"version": "0.8.0",
"description": "Deterministic multi-step agent orchestration for pi: a Claude Code-style workflow tool with agent()/parallel()/pipeline() scripts over the shared agent catalog",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"pify",
"workflow",
"orchestration"
],
"homepage": "https://github.com/pifydev/workflow#readme",
"bugs": {
"url": "https://github.com/pifydev/workflow/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pifydev/workflow.git"
},
"license": "MIT",
"author": "Pify maintainers",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"files": [
"extensions",
"src",
"skills",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./extensions/workflow.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "npm run typecheck && npm test"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.85.1",
"@earendil-works/pi-tui": "^0.85.1",
"@types/node": "^22.10.2",
"typebox": "^1.1.38",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
}
}