-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "@browser-network/switchboard",
"version": "0.1.3",
"description": "The switching server required for the onboarding of new nodes into a @browser-network/network",
"main": "dist/index.js",
"bin": "dist/index.js",
"engines": {
"node": "26.x"
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"heroku-postbuild": "npm run build",
"start": "node dist/index.js",
"start:dev": "nodemon -e ts -x 'ts-node index.ts'",
"test": "npm run build && node test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:browser-network/switchboard.git"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"webrtc",
"signal",
"browser-network",
"network",
"distributed",
"decentralized"
],
"author": "Aaron Sullivan <aasullivan1618@gmail.com>",
"bugs": {
"url": "https://github.com/browser-network/switchboard/issues"
},
"license": "MIT",
"devDependencies": {
"nodemon": "^3.1.14",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}