-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "webrtc-p2p-transfer",
"version": "1.0.0",
"description": "WebRTC-based P2P file transfer tool with browser and CLI support",
"main": "server/index.js",
"bin": {
"p2p-transfer": "./cli/index.js"
},
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"serve": "http-server client -p 8080 -c-1",
"dev:full": "concurrently \"npm run dev\" \"npm run serve\"",
"build": "pkg cli/index.js --config pkg.json --out-path dist",
"build:all": "pkg cli/index.js --targets node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-macos-arm64,node18-win-x64 --out-path dist"
},
"keywords": [
"webrtc",
"p2p",
"file-transfer",
"peer-to-peer"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"progress": "^2.0.3",
"readline-sync": "^1.4.10",
"ws": "^8.18.3"
},
"devDependencies": {
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"nodemon": "^3.0.1",
"pkg": "^5.8.1"
}
}