-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 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
{
"name": "plugboo",
"productName": "Plugboo",
"version": "1.0.0",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"prettier-check": "prettier --check src/**/*",
"prettier-fix": "prettier --write src/**/*"
},
"keywords": [],
"author": "zickz",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.8.1",
"@electron-forge/maker-deb": "^7.8.1",
"@electron-forge/maker-rpm": "^7.8.1",
"@electron-forge/maker-squirrel": "^7.8.1",
"@electron-forge/maker-zip": "^7.8.1",
"@electron-forge/plugin-fuses": "^7.8.1",
"@electron-forge/plugin-vite": "^7.8.1",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.29.0",
"@tailwindcss/vite": "^4.1.10",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/mime-types": "^3.0.1",
"@types/node-fetch": "^2.6.12",
"@types/react-dom": "^19.1.6",
"electron": "36.5.0",
"eslint": "^8.57.1",
"eslint-plugin-import-x": "^4.15.2",
"prettier": "^3.6.2",
"ts-node": "^10.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vite": "^5.0.12"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindui/react": "^0.1.1",
"7zip-min": "^2.1.0",
"ansis": "^4.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compare-versions": "^6.1.1",
"electron-settings": "^4.0.4",
"electron-squirrel-startup": "^1.0.1",
"interweave": "^13.1.1",
"load-ini": "^1.1.0",
"lucide-react": "^0.519.0",
"mime-types": "^3.0.1",
"motion": "^12.20.1",
"node-unrar-js": "^2.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.6.2",
"react-toastify": "^11.0.5",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.10",
"tw-animate-css": "^1.3.6",
"upath": "^2.0.1",
"uuid": "^11.1.0"
},
"engines": {
"node": ">= 20"
}
}