-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.6 KB
/
package.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "YetAnotherZombieHorror",
"description": "Yet Another Zombie Horror",
"homepage": "https://github.com/UstymUkhman/YetAnotherZombieHorror#readme",
"packageManager": "^[email protected]",
"main": "src/main.ts",
"version": "0.7.5",
"license": "MIT",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/UstymUkhman/YetAnotherZombieHorror.git"
},
"bugs": {
"url": "https://github.com/UstymUkhman/YetAnotherZombieHorror/issues",
"email": "[email protected]"
},
"author": {
"name": "Ustym Ukhman",
"email": "[email protected]",
"url": "https://github.com/UstymUkhman/"
},
"keywords": [
"fps",
"tps",
"game",
"webgl",
"webgl2",
"ammojs",
"svelte",
"horror",
"threejs",
"zombies",
"shooter",
"survival",
"electron",
"typescript",
"horror-game",
"survival-horror",
"survival-shooter",
"first-person-shooter",
"third-person-shooter",
"zombie-survival-shooter"
],
"scripts": {
"postinstall": "electron-builder install-app-deps",
"setup": "cd build && pnpm i && cd..",
"start:web": "vite",
"build:web": "vite build",
"serve:web": "vite preview",
"build:prod": "set prod=true&& vite build",
"start:app": "pnpm build:app && pnpm build:dev",
"build:app": "pnpm build:web && tsc --project app",
"build:dev": "set ENVIRONMENT=development&& electron build/app/main.js",
"pack:app": "electron-builder --dir --config app/builder.yml",
"dist:app": "electron-builder --config app/builder.yml",
"lint:css": "stylelint **/*.{svelte,scss,css}",
"lint:js": "eslint src/**/*.{svelte,ts,js}"
},
"dependencies": {
"ammo.js": "^0.0.10",
"animejs": "^3.2.1",
"raindrop-fx": "^1.0.8",
"three": "^0.152.2",
"three-mesh-bvh": "^0.6.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "2.3.0",
"@types/animejs": "^3.1.7",
"@types/node": "^20.2.3",
"@types/three": "^0.152.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"electron": "^24.4.0",
"electron-builder": "^23.6.0",
"eslint": "^8.41.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.23",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"sass": "^1.62.1",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0",
"svelte": "^3.59.1",
"svelte-preprocess": "^5.0.3",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-glsl": "^1.1.2"
},
"engines": {
"node": ">= 18.12.1",
"pnpm": ">= 8.4.0"
}
}