-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "dungeon-weaver",
"private": true,
"version": "0.1.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"train:auto-label": "node scripts/auto-label-map.mjs",
"train:build-jsonl": "node scripts/build-map-training-jsonl.mjs",
"electron:dev": "concurrently -k \"cross-env BROWSER=none vite\" \"wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.35.2",
"lucide-react": "^0.577.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.2.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1",
"wait-on": "^8.0.2"
},
"build": {
"appId": "com.dungeonweaver.app",
"productName": "Dungeon Weaver",
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"output": "release"
},
"win": {
"target": "nsis"
}
}
}