-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.87 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
{
"name": "tervin",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "The agent-native terminal workspace.",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"app": "tauri dev",
"app:build": "tauri build",
"test": "vitest run",
"test:watch": "vitest",
"e2e:build": "pnpm build && cargo build -p tervin-app --features e2e",
"test:e2e": "pnpm e2e:build && wdio run tests/e2e/wdio.conf.ts",
"test:e2e:debug": "pnpm e2e:build && wdio run tests/e2e/wdio.conf.ts --logLevel debug",
"test:e2e:spec": "pnpm e2e:build && node scripts/e2e-spec.mjs"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-opener": "^2",
"@xterm/addon-canvas": "^0.7",
"@xterm/addon-fit": "^0.10",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-search": "^0.15",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.8",
"@xterm/addon-web-links": "^0.11",
"@xterm/addon-webgl": "^0.18",
"@xterm/xterm": "^5.5",
"react": "^19.2",
"react-dom": "^19.2",
"zustand": "^5"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/mocha": "^10.0.10",
"@types/node": "^26.1.2",
"@types/react": "^19.2",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^4",
"@wdio/cli": "^9.30.1",
"@wdio/globals": "^9.29.1",
"@wdio/local-runner": "^9.30.1",
"@wdio/mocha-framework": "^9.30.1",
"@wdio/spec-reporter": "^9.30.1",
"@wdio/tauri-service": "^1.3.0",
"jsdom": "^30.0.1",
"tsx": "^4.23.12",
"typescript": "^5.6",
"vite": "^8.2.0",
"vitest": "^4.1.10",
"webdriverio": "^9.30.1"
},
"packageManager": "pnpm@10.32.1"
}