-
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.21 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.21 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": "@martintrojer/mu",
"version": "1.1.0",
"description": "A persistent, observable crew of pi agents running in one tmux or herdr session per workstream, coordinated through a built-in task DAG.",
"publishConfig": {
"access": "public"
},
"type": "module",
"license": "MIT",
"author": "Martin Trojer <martin.trojer@gmail.com>",
"homepage": "https://github.com/martintrojer/mu",
"repository": {
"type": "git",
"url": "git+https://github.com/martintrojer/mu.git"
},
"bugs": {
"url": "https://github.com/martintrojer/mu/issues"
},
"keywords": [
"tmux",
"herdr",
"terminal-multiplexer",
"agents",
"ai",
"orchestration",
"task-graph",
"pi-coding-agent",
"pi-package"
],
"engines": {
"node": ">=22.12 <=24"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"mu": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"docs",
"README.md",
"AGENTS.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:fast": "vitest run --config vitest.fast.config.ts",
"test:watch": "vitest",
"test:watch:fast": "vitest --config vitest.fast.config.ts",
"lint": "biome check src test scripts",
"lint:fix": "biome check --write src test scripts",
"format": "biome format --write src test scripts",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit",
"prepare": "npm run build",
"test:stress": "tools/test-stress.sh"
},
"dependencies": {
"better-sqlite3": "^13.0.2",
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"execa": "^10.0.1",
"ink": "^7.1.1",
"picocolors": "^1.1.1",
"react": "^19.2.8",
"react-devtools-core": "^7.0.1",
"string-width": "^8.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@typescript/native": "npm:typescript@^7.0.2",
"fast-check": "^4.9.0",
"tsup": "^8.3.5",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "^4.1.10"
}
}