-
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) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 923 Bytes
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": "time-auction-game",
"version": "1.0.0",
"description": "時間競標遊戲 - 區網多人即時遊戲",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "pkg . --targets node18-win-x64 --output build/時間競標遊戲.exe",
"build-all": "pkg . --targets node18-win-x64,node18-macos-x64,node18-linux-x64 --out-path build"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.13.0"
},
"devDependencies": {
"nodemon": "^2.0.22",
"pkg": "^5.8.1"
},
"pkg": {
"assets": [
"public/**/*"
],
"targets": [
"node18-win-x64"
],
"outputPath": "build"
},
"keywords": [
"game",
"websocket",
"multiplayer",
"real-time"
],
"author": "",
"license": "MIT"
}