-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "build-map-exporter",
"productName": "Build Map Exporter",
"version": "1.0.0",
"description": "A map viewer and export tool for Build Engine games",
"main": ".vite/build/index.js",
"private": true,
"packageManager": "pnpm@10.29.2",
"scripts": {
"start": "ELECTRON_DISABLE_SECURITY_WARNINGS=true electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"keywords": [
"electron",
"react",
"threejs",
"typescript",
"blood",
"build-engine",
"duke-nukem-3d",
"shadow-warrior"
],
"author": {
"name": "Steveeeie",
"email": "Steveeeie@users.noreply.github.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.39.2",
"@semantic-release/git": "^10.0.1",
"@types/earcut": "^3.0.0",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react": "^5.1.2",
"electron": "^40.0.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1"
},
"dependencies": {
"@eulersoft/classnames": "^1.0.1",
"earcut": "^3.0.2",
"electron-squirrel-startup": "^1.0.1",
"n8ao": "^1.10.1",
"pngjs": "^7.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"three": "^0.182.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"electron",
"electron-winstaller",
"fs-xattr",
"macos-alias"
]
}
}