-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.48 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.48 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "dtui2-react",
"version": "1.3.5",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:electron": "npm run build",
"preview": "vite preview",
"electron": "electron .",
"electron:dev": "concurrently \"npm run dev\" \"cross-env NODE_ENV=development electron .\"",
"electron:headless": "cross-env NODE_ENV=production ELECTRON_DISABLE_SANDBOX=true xvfb-run -a electron .",
"test": "node test-app.js",
"test:fakeshell": "node test-fakeshell.js",
"test:config": "node test/test-config.js",
"test:all": "npm test && npm run test:fakeshell && npm run test:config",
"test:complete": "npm run test:all && npm run test:gui",
"test:e2e": "node test-e2e.js",
"test:browser": "npm run dev",
"test:gui": "npx playwright test --project=electron",
"test:gui:headed": "npx playwright test --project=electron --headed",
"test:gui:debug": "npx playwright test --project=electron --debug",
"test:runner": "node test-runner.js",
"test:hpc": "DTUI_USER_CONFIGFILE=dtui-hpc.json npm run test:gui",
"setup:hpc": "bash scripts/hpc-setup.sh",
"setup:wsl": "bash scripts/setup-wsl.sh",
"postinstall": "npx electron-rebuild -f -w @homebridge/node-pty-prebuilt-multiarch || echo 'Rebuild failed, using fallback'",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux"
},
"keywords": [
"ai",
"chat",
"terminal",
"electron",
"react"
],
"author": "",
"license": "MIT",
"description": "Claude Code Style AI Terminal Desktop App",
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/nconf": "^0.10.7",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.8",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/xterm": "^2.0.3",
"@vitejs/plugin-react": "^5.0.2",
"concurrently": "^9.2.1",
"cross-env": "^10.0.0",
"electron": "^37.4.0",
"electron-builder": "^26.0.12",
"electron-rebuild": "^3.2.9",
"playwright": "^1.55.0",
"typescript": "^5.9.2",
"vite": "^7.1.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.60.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
"ansi-to-html": "^0.7.2",
"axios": "^1.11.0",
"nconf": "^0.13.0",
"openai": "^5.16.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
},
"build": {
"appId": "com.dtui2.app",
"productName": "DTUI2",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"dtui.json"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
"AppImage",
"tar.gz"
]
},
"portable": {
"artifactName": "DTUI2-portable-${version}.${ext}"
}
}
}