-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 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
{
"name": "hawk",
"version": "0.18.2-beta",
"assets": "0.1.6-release",
"module": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"assets": "node assets.build.js",
"build": "node app.build.js",
"fast-build": "node app.build.js fast",
"watch": "node app.build.js dev"
},
"keywords": [
"game",
"hangout",
"online",
"multiplayer"
],
"author": "tsumugi_dev",
"license": "Apache License 2.0",
"description": "Hangout game created using Hawk engine.",
"dependencies": {
"@eslint/core": "^0.17.0",
"bcryptjs": "^3.0.2",
"eruda": "^3.4.3",
"eslint": "^9.39.2",
"eventemitter3": "^4.0.7",
"express": "^5.1.0",
"humanize-ms": "^2.0.0",
"mime-types": "^3.0.1",
"msgpackr": "^1.11.5",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-google-oauth20": "^2.0.0",
"phaser3spectorjs": "^0.0.8",
"pngjs": "^7.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"autoprefixer": "^10.4.21",
"chokidar": "^4.0.3",
"postcss": "^8.5.6",
"rollup": "^2.79.2",
"rollup-cache": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.93.3"
},
"manifest": {
"name": "Hawk",
"short_name": "Hawk",
"description": "Dive into a seamless web universe. Connect with friends, meet new people, and create your own story in real-time.",
"start_url": "/",
"url": "https://hawkg.xyz/",
"display": "standalone",
"background_color": "#0a0a0a",
"theme_color": "#0a0a0a",
"icons": [
{
"src": "/icons/icon-circle.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/icons/icon-round.png",
"sizes": "512x512",
"type": "image/png"
}
],
"permissions": [
"notifications"
]
}
}