-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.86 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
{
"name": "@aliou/pi-harness",
"private": true,
"type": "module",
"keywords": [
"pi-package"
],
"repository": {
"type": "git",
"url": "https://github.com/aliou/pi-harness"
},
"pi": {
"extensions": [
"./commands",
"./hooks",
"./tools"
]
},
"scripts": {
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --build",
"test": "vitest run",
"test:watch": "vitest",
"build:native": "./scripts/build-native-tools.sh",
"postinstall": "./scripts/build-native-tools.sh"
},
"dependencies": {
"@aliou/pi-utils-ui": "^0.4.1",
"@aliou/sesame": "^0.8.0",
"@aliou/sh": "^0.1.0",
"@harness/agent-kit": "workspace:*",
"@harness/completion": "workspace:*",
"@harness/events": "workspace:*",
"@harness/model-registry": "workspace:*",
"@harness/provider-usage": "workspace:*",
"@harness/session-store": "workspace:*",
"@harness/session-tools": "workspace:*",
"@harness/utils": "workspace:*"
},
"devDependencies": {
"@aliou/biome-plugins": "^0.8.1",
"@biomejs/biome": "^2.4.14",
"@earendil-works/pi-agent-core": "0.79.1",
"@earendil-works/pi-ai": "0.79.1",
"@earendil-works/pi-coding-agent": "0.79.1",
"@earendil-works/pi-tui": "0.79.1",
"@harness/test-utils": "workspace:*",
"@harness/ui": "workspace:*",
"@types/node": "^22.0.0",
"memfs": "^4.57.2",
"typebox": "*",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"@earendil-works/pi-coding-agent": "0.79.1",
"@earendil-works/pi-agent-core": "$@earendil-works/pi-coding-agent",
"@earendil-works/pi-ai": "$@earendil-works/pi-coding-agent",
"@earendil-works/pi-tui": "$@earendil-works/pi-coding-agent"
},
"onlyBuiltDependencies": [
"@aliou/sh"
]
},
"packageManager": "pnpm@10.26.1"
}