-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "solarsystemsimulation3d",
"version": "1.0.0",
"description": "Güneş Sistemi Simülasyonu",
"main": "main-electron.js",
"scripts": {
"dev": "vite",
"start": "electron .",
"build": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dist": "npm run build && npx electron-packager . \"SolarSystemSimulation3D\" --platform=win32 --arch=x64 --out=builds/desktop --overwrite --icon=icon.ico",
"setup": "npm run build && npx electron-builder --win"
},
"keywords": [],
"author": "Barbaros",
"license": "ISC",
"dependencies": {
"gsap": "^3.12.5",
"three": "^0.160.0"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3",
"electron-packager": "^17.1.2",
"gh-pages": "^6.3.0",
"vite": "^5.2.11"
},
"build": {
"appId": "com.barbaros.solarsystemsimulation3d",
"productName": "SolarSystemSimulation3D",
"win": {
"target": [
"nsis",
"portable"
],
"icon": "icon.ico"
},
"directories": {
"output": "builds/installer"
}
}
}