-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.96 KB
/
package.json
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
{
"name": "dev-runner",
"version": "0.0.1",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://www.electronjs.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"ts": "tsc",
"ts:watch": "tsc --watch",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run ts && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:linux": "electron-vite build && electron-builder --linux --config"
},
"dependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^1.0.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^4.32.0",
"@trpc/client": "10.32.0",
"@trpc/react-query": "10.32.0",
"@trpc/server": "10.32.0",
"@types/pidusage": "^2.0.2",
"ansi-to-html": "^0.7.2",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cross-zip": "^4.0.0",
"custom-electron-titlebar": "^4.2.3",
"electron-store": "^8.1.0",
"electron-trpc": "0.5.2",
"electron-updater": "^6.1.1",
"lucide-react": "^0.256.0",
"minimatch": "^9.0.3",
"node-pty": "^1.0.0",
"pidtree": "^0.6.0",
"pidusage": "^3.0.2",
"pidusage-tree": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0",
"rxjs": "^7.8.1",
"superjson": "^1.12.3",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"xterm": "^5.2.1",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-search": "^0.12.0",
"xterm-addon-web-links": "^0.8.0",
"xterm-addon-webgl": "^0.15.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.1.0",
"@locator/babel-jsx": "^0.3.1",
"@locator/runtime": "^0.3.1",
"@swc/core": "^1.3.70",
"@types/babel__core": "^7.20.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"electron": "^25.3.1",
"electron-builder": "^24.4.0",
"electron-vite": "^1.0.25",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
"vite": "^4.4.6"
}
}