-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"name": "world-chest-finder",
"version": "0.1.0",
"description": "Minecraft world chest finder and editor",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "npm run build && electron-builder"
},
"dependencies": {
"@codemirror/theme-one-dark": "^6.1.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/vite": "^4.3.0",
"@uiw/react-codemirror": "^4.25.10",
"adm-zip": "^0.5.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"prismarine-nbt": "^2.8.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"electron": "^42.2.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"build": {
"appId": "com.scriptarts.worldchestfinder",
"productName": "WorldChestFinder",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
}
}
}