forked from openpi-dev/openpi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.34 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
{
"name": "@tt-a1i/openpi",
"version": "0.4.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",
"keywords": [
"pi-package",
"pi",
"coding-agent",
"multi-agent",
"subagents",
"workflows"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tt-a1i/openpi.git"
},
"homepage": "https://github.com/tt-a1i/openpi#readme",
"bugs": {
"url": "https://github.com/tt-a1i/openpi/issues"
},
"files": [
"extensions",
"!extensions/**/*.test.ts",
"!extensions/**/*.spec.ts",
"!extensions/**/tsconfig.json",
"!extensions/*/docs",
"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/tt-a1i/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"
},
"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",
"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 format:check && bun run lint && bun run typecheck",
"prepare": "node scripts/prepare-effect-tsgo.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint . --error-on-warnings",
"typecheck": "tsc --noEmit",
"test": "node --test --experimental-strip-types extensions/*/*.test.ts && vitest run extensions/file-search/index.spec.ts"
},
"packageManager": "bun@1.3.14"
}