-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 818 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 818 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
{
"name": "messager",
"version": "1.0.0",
"main": "server.js",
"bin": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:win": "pkg . --targets node18-win-x64 --output dist/messager-win.exe",
"build:mac": "pkg . --targets node18-macos-x64 --output dist/messager-mac",
"build:linux": "pkg . --targets node18-linux-x64 --output dist/messager-linux",
"build:all": "npm run build:win && npm run build:mac && npm run build:linux"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^5.1.0",
"multer": "^2.0.1",
"socket.io": "^4.8.1"
},
"devDependencies": {
"pkg": "^5.8.0"
},
"pkg": {
"assets": [
"public/**/*",
"uploads/**/*",
"uploads"
]
}
}