-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) Β· 1.68 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) Β· 1.68 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": "dozy",
"version": "1.0.1",
"description": "Dozy β build, validate and package Unreal Engine plugins for Fab/Marketplace submission",
"author": "Dire Dex",
"main": "./out/main/index.js",
"scripts": {
"predev": "node scripts/ensure-electron.js",
"dev": "electron-vite dev",
"prebuild": "node scripts/ensure-electron.js",
"build": "electron-vite build",
"build:win": "npm run build && electron-builder --win",
"preview": "electron-vite preview",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web"
},
"dependencies": {
"archiver": "^7.0.1",
"lucide-react": "^1.25.0"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@tailwindcss/postcss": "^4.1.0",
"@types/archiver": "^6.0.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"electron": "^35.7.5",
"electron-builder": "^26.15.3",
"electron-vite": "^3.1.0",
"postcss": "^8.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.7.0"
},
"build": {
"appId": "com.dozy.app",
"productName": "Dozy",
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "Dozy"
},
"files": [
"out/**/*",
"package.json"
]
}
}