-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "os-file-organizer",
"version": "0.1.0",
"private": true,
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.electron.json && vite build",
"preview": "vite preview",
"electron:dev": "tsc -p tsconfig.electron.json && concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "tsc -p tsconfig.electron.json && vite build && electron-builder"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@nivo/core": "^0.99.0",
"@nivo/sunburst": "^0.99.0",
"@nivo/treemap": "^0.99.0",
"framer-motion": "^11.11.17",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^16.1.0",
"zustand": "^5.0.1"
},
"build": {
"appId": "com.nexus.fileorganizer",
"productName": "Nexus",
"directories": {
"output": "release"
},
"mac": {
"target": ["dmg", "zip"]
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"afterPack": "./scripts/afterPack.js"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"wait-on": "^7.2.0"
}
}