@k1e1n04/mav 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +56 -0
- package/package.json +1 -1
- package/scripts/postbuild.mjs +3 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@k1e1n04/mav",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Multi-agent view — manage multiple AI CLI sessions in one terminal",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mav": "./dist/bin/mav.js"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/k1e1n04/mav.git"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/",
|
|
19
|
+
"src/",
|
|
20
|
+
"bin/",
|
|
21
|
+
"lua/",
|
|
22
|
+
"plugin/",
|
|
23
|
+
"scripts/",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsc && node scripts/postbuild.mjs",
|
|
29
|
+
"dev": "tsx bin/mav.ts",
|
|
30
|
+
"postinstall": "node scripts/postinstall.mjs",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"test:watch": "vitest",
|
|
33
|
+
"prepublishOnly": "pnpm test && pnpm build"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"commander": "13.1.0",
|
|
37
|
+
"js-yaml": "4.1.0",
|
|
38
|
+
"neo-blessed": "0.2.0",
|
|
39
|
+
"node-pty": "1.0.0",
|
|
40
|
+
"term.js": "^0.0.7"
|
|
41
|
+
},
|
|
42
|
+
"pnpm": {
|
|
43
|
+
"onlyBuiltDependencies": [
|
|
44
|
+
"esbuild",
|
|
45
|
+
"node-pty"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/blessed": "^0.1.27",
|
|
50
|
+
"@types/js-yaml": "4.0.9",
|
|
51
|
+
"@types/node": "22.15.21",
|
|
52
|
+
"tsx": "4.19.3",
|
|
53
|
+
"typescript": "5.8.3",
|
|
54
|
+
"vitest": "3.2.0"
|
|
55
|
+
}
|
|
56
|
+
}
|
package/package.json
CHANGED
package/scripts/postbuild.mjs
CHANGED