-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.29 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@tt-a1i/openpi",
"version": "0.5.0",
"description": "OpenPI — a Pi-native multi-agent workbench with background execution, isolated subagents, replay-safe workflows, goals, tasks, and observable TUI",
"license": "MIT",
"author": "tt-a1i",
"bin": {
"openpi": "./bin/openpi.js"
},
"keywords": [
"pi-package",
"pi",
"coding-agent",
"multi-agent",
"subagents",
"workflows"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openpi-dev/openpi.git"
},
"homepage": "https://github.com/openpi-dev/openpi#readme",
"bugs": {
"url": "https://github.com/openpi-dev/openpi/issues"
},
"files": [
"bin",
"web",
"extensions",
"!extensions/**/*.test.ts",
"!extensions/**/*.spec.ts",
"!extensions/**/tsconfig.json",
"!extensions/**/test-support/**",
"!extensions/*/docs",
"!tests/**",
"skills",
"themes",
"assets",
"scripts/prepare-effect-tsgo.mjs",
"README.md",
"SETUP.md",
"THIRD_PARTY_NOTICES.md"
],
"publishConfig": {
"access": "public"
},
"pi": {
"extensions": [
"./extensions"
],
"themes": [
"./themes"
],
"image": "https://raw.githubusercontent.com/openpi-dev/openpi/main/assets/openpi-package.png"
},
"dependencies": {
"@effect/platform-node": "^4.0.0-beta.99",
"acorn": "^8.17.0",
"effect": "^4.0.0-beta.99",
"jiti": "2.7.0",
"marked": "^18.0.5",
"undici": "8.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "^0.84.1",
"@earendil-works/pi-tui": "^0.84.1",
"@effect/tsgo": "^0.24.2",
"@effect/vitest": "^4.0.0-beta.99",
"@types/node": "^26.1.1",
"typebox": "^1.3.6",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "4.1.10"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"prepublishOnly": "bun run check && bun run test",
"check": "bun run check:config-contract && bun run check:discipline && bun run check:web && bun run format:check && bun run lint && bun run typecheck",
"check:config-contract": "node scripts/check-config-contract.mjs",
"check:discipline": "node scripts/check-discipline-ledger.mjs",
"prepare": "node scripts/prepare-effect-tsgo.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint . --error-on-warnings",
"typecheck": "tsc --noEmit",
"benchmark:workflow-journal": "node --experimental-strip-types --expose-gc benchmarks/workflow-journal.ts",
"dev:web": "node --experimental-strip-types scripts/dev-web.mjs",
"dev:web:ui": "vite --config web/vite.config.mjs --host 127.0.0.1",
"dev:web:backend": "node scripts/dev-web-backend.mjs",
"check:web": "node --check scripts/dev-web.mjs && node --check web/vite.config.mjs && node --check web/ui/app.js",
"benchmark:workflow-child-startup": "node --experimental-strip-types scripts/benchmark-workflow-child-startup.mjs",
"test": "node scripts/run-tests.mjs",
"provenance": "node scripts/provenance.mjs"
},
"packageManager": "bun@1.3.14"
}