-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "@phux/herdr-opencode",
"version": "0.2.0",
"description": "Native Herdr lifecycle reporting for OpenCode v1 and v2 — accurate agent state and pane session restore",
"license": "MIT",
"author": "phux contributors",
"repository": {
"type": "git",
"url": "https://github.com/no-phux/herdr-opencode.git",
"directory": "."
},
"homepage": "https://github.com/no-phux/herdr-opencode#readme",
"bugs": "https://github.com/no-phux/herdr-opencode/issues",
"keywords": [
"herdr",
"opencode",
"opencode-plugin",
"opencode2",
"opencode-2",
"terminal",
"multiplexer",
"multi-agent",
"lifecycle"
],
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
".": "./dist/src/index.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build && npm test",
"test": "tsc -p tsconfig.json && node --test dist/test/*.test.js"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.0"
}
}