-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.54 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
{
"name": "debugtron",
"productName": "Debugtron",
"version": "1.0.0-alpha.0",
"description": "Debug in-production Electron based App",
"repository": "pd4d10/debugtron",
"license": "MIT",
"author": "Rongjian Zhang <pd4d10@gmail.com>",
"main": ".vite/build/main.js",
"scripts": {
"make": "electron-forge make",
"package": "electron-forge package",
"publish": "electron-forge publish",
"start": "electron-forge start",
"lint": "eslint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1",
"registry-js": "^1.16.1",
"simple-plist": "^1.3.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron-forge/maker-deb": "^7.10.2",
"@electron-forge/maker-rpm": "^7.10.2",
"@electron-forge/maker-squirrel": "^7.10.2",
"@electron-forge/maker-zip": "^7.10.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.10.2",
"@electron-forge/plugin-fuses": "^7.10.2",
"@electron-forge/plugin-vite": "^7.10.2",
"@electron-forge/publisher-github": "^7.10.2",
"@electron/fuses": "^1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@reduxjs/toolkit": "^2.10.1",
"@stylistic/eslint-plugin": "^5.5.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/ini": "^4.1.1",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/universal-analytics": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"electron": "^39.1.0",
"electron-devtools-installer": "^4.0.0",
"electron-redux": "^2.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"get-port": "^7.1.0",
"ini": "^6.0.0",
"lodash-es": "^4.17.21",
"node-machine-id": "^1.1.12",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"universal-analytics": "^0.5.3",
"uuid": "^13.0.0",
"vite": "^7.1.12"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=22.0.0"
}
}