-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.78 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
{
"name": "@agntn/harnesses",
"version": "0.0.1",
"description": "Metadata registry for AI coding harnesses: binaries, configs, sessions, and capabilities.",
"homepage": "https://github.com/agntn/harnesses#readme",
"bugs": "https://github.com/agntn/harnesses/issues",
"license": "MIT",
"author": "oritwoen (https://github.com/oritwoen)",
"repository": {
"type": "git",
"url": "git+https://github.com/agntn/harnesses.git"
},
"bin": {
"harnesses": "./dist/cli.mjs"
},
"files": [
"dist",
"packages/omp/extensions",
"packages/pi/extensions",
"packages/shared"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./mcp": {
"types": "./dist/mcp.d.mts",
"import": "./dist/mcp.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "obuild",
"dev": "obuild --stub",
"docs": "pnpm --dir docs dev",
"lint": "pnpm build && oxlint . && oxfmt --check .",
"lint:fix": "pnpm build && oxlint . --fix && oxfmt . && pnpm build",
"typecheck": "tsgo --noEmit --skipLibCheck && pnpm build && tsgo --noEmit --skipLibCheck -p tsconfig.extensions.json",
"test": "vitest",
"test:run": "vitest --run",
"prepack": "pnpm run build",
"release": "pnpm test:run && pnpm build && changelogen --release --push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"@toon-format/toon": "^4.1.1",
"citty": "^0.2.2",
"consola": "^3.4.2",
"smol-toml": "^1.8.0",
"typebox": "^1.3.19"
},
"devDependencies": {
"@agntn/ox": "^0.1.0",
"@earendil-works/pi-coding-agent": "0.84.3",
"@earendil-works/pi-tui": "0.84.3",
"@oh-my-pi/omptype": "18.0.4",
"@oh-my-pi/pi-ai": "18.0.4",
"@oh-my-pi/pi-coding-agent": "18.0.4",
"@types/node": "latest",
"@typescript/native-preview": "latest",
"changelogen": "^0.6.2",
"obuild": "^0.4.38",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"vitest": "^4.1.11"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.84.2 <1",
"@earendil-works/pi-tui": ">=0.84.2 <1",
"@oh-my-pi/pi-coding-agent": ">=18.0.0 <19"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"@oh-my-pi/pi-coding-agent": {
"optional": true
}
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.24.0",
"omp": {
"extensions": [
"./packages/omp/extensions/harnesses.ts"
]
},
"pi": {
"extensions": [
"./packages/pi/extensions/harnesses.ts"
]
}
}