-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"name": "pi-agent-workflows",
"version": "0.1.2",
"description": "Pi workflow extension for orchestrating recursive subagents with inter-agent communication, write locking, cost accounting, and a workflow TUI.",
"type": "module",
"private": false,
"license": "MIT",
"author": "Ananth",
"keywords": [
"pi-package",
"pi-extension",
"workflow-agents",
"subagents",
"coding-agent"
],
"homepage": "https://github.com/an2tha/pi-workflows#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/an2tha/pi-workflows.git"
},
"bugs": {
"url": "https://github.com/an2tha/pi-workflows/issues"
},
"exports": {
".": "./index.ts",
"./package.json": "./package.json"
},
"main": "./index.ts",
"types": "./index.ts",
"files": [
"index.ts",
"src/**/*.ts",
"skills/**/*",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"check": "bun test && bunx tsc --noEmit",
"pack:dry": "npm pack --dry-run",
"prepublishOnly": "bun test && bunx tsc --noEmit"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*",
"typescript": "^5"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.80.2",
"@earendil-works/pi-tui": "^0.80.2",
"@types/bun": "latest",
"typebox": "^1.3.1",
"typescript": "^5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.19.0"
}
}