-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.06 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
{
"name": "mterminal",
"private": true,
"version": "0.3.5",
"type": "commonjs",
"main": "out/main/index.js",
"description": "Custom terminal emulator with grouped tabs and warm dark UI",
"author": "mterm-dev",
"license": "MIT",
"homepage": "https://github.com/arthurr0/mTerminal",
"repository": {
"type": "git",
"url": "git+https://github.com/arthurr0/mTerminal.git"
},
"bugs": {
"url": "https://github.com/arthurr0/mTerminal/issues"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron .",
"package": "electron-vite build && electron-builder --publish never",
"package:linux": "electron-vite build && electron-builder --linux --publish never",
"package:win": "electron-vite build && electron-builder --win --publish never",
"package:mac": "electron-vite build && electron-builder --mac --publish never",
"rebuild": "electron-rebuild -f -w node-pty",
"postinstall": "node node_modules/electron/install.js && electron-rebuild -f -w node-pty || true",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"preview": "electron-vite preview",
"release": "node scripts/release.mjs",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.1",
"@fontsource-variable/bricolage-grotesque": "^5.2.10",
"@fontsource-variable/hanken-grotesk": "^5.2.8",
"@fontsource/commit-mono": "^5.2.5",
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mterminal/manifest-validator": "^0.2.0",
"@mterminal/marketplace-types": "^0.2.0",
"@noble/ciphers": "^1.0.0",
"@noble/ed25519": "^2.3.0",
"@noble/hashes": "^1.5.0",
"@openai/codex-sdk": "^0.129.0",
"@xterm/addon-canvas": "0.8.0-beta.48",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"chokidar": "^4.0.3",
"electron-updater": "^6.8.3",
"fflate": "^0.8.2",
"highlight.js": "^11.11.1",
"node-pty": "^1.0.0",
"ollama": "^0.6.3",
"pidtree": "^0.6.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"node-pty",
"esbuild"
],
"ignoredOptionalDependencies": [
"cpu-features"
]
},
"trustedDependencies": [
"electron",
"node-pty",
"esbuild"
],
"devDependencies": {
"@electron/rebuild": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.5",
"electron": "^42.0.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"vite": "^8.0.0",
"vitest": "^4.1.5"
}
}