-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "voxelgame",
"version": "1.0.0",
"description": "voxel engine and game",
"main": "./src/electron/main.js",
"author": "nowaythis.works",
"homepage": "https://nowaythis.works",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --ext .js .",
"dev": "electron . --enable-precise-memory-info --no-user-gesture-required --force_high_performance_gpu",
"webgpu-test": "electron . --enable-unsafe-webgpu",
"postinstall": "electron-builder install-app-deps",
"build:win": "electron-builder --win --config",
"build:mac": "electron-builder --mac --config",
"build:linux": "electron-builder --linux --config"
},
"dependencies": {
"@babylonjs/core": "^6.16.0",
"@electron-toolkit/preload": "^1.0.3",
"@electron-toolkit/utils": "^1.0.2",
"cannon": "^0.6.2",
"express": "^4.18.2"
},
"devDependencies": {
"electron": "^25.5.0",
"electron-builder": "^23.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nowaythisworks/Voxel-Engine.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/nowaythisworks/Voxel-Engine/issues"
}
}