-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@digital-threads/aimux",
"version": "0.7.0",
"description": "Local AI workspace orchestrator — manage multiple AI CLI subscriptions with shared knowledge and isolated auth",
"type": "module",
"bin": {
"aimux": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.tsx",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/cli.js",
"test": "vitest run",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"cli",
"ai",
"claude",
"orchestrator",
"profile-manager",
"tui"
],
"author": "shahinyanm",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Digital-Threads/aimux.git"
},
"homepage": "https://github.com/Digital-Threads/aimux#readme",
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^14.0.3",
"ink": "^7.0.1",
"ink-ui": "^0.4.0",
"react": "^19.2.5",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}