-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
85 lines (85 loc) · 2.01 KB
/
package.json
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
80
81
82
83
84
85
{
"name": "trystero",
"version": "0.20.0",
"description": "Serverless WebRTC matchmaking for painless P2P",
"main": "src/index.js",
"module": "src/index.js",
"type": "module",
"types": "src/index.d.ts",
"exports": {
".": "./src/index.js",
"./firebase": "./src/firebase.js",
"./ipfs": "./src/ipfs.js",
"./mqtt": "./src/mqtt.js",
"./nostr": "./src/nostr.js",
"./supabase": "./src/supabase.js",
"./torrent": "./src/torrent.js"
},
"author": {
"name": "Dan Motzenbecker",
"email": "[email protected]",
"url": "https://oxism.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dmotz/trystero.git"
},
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.4.0",
"@supabase/supabase-js": "^2.43.4",
"@thaunknown/simple-peer": "^10.0.7",
"@waku/discovery": "^0.0.3",
"@waku/sdk": "^0.0.26",
"firebase": "^10.9.0",
"libp2p": "^1.3.0",
"mqtt": "^5.7.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@playwright/test": "^1.42.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"chalk": "^5.3.0",
"eslint": "^9.0.0",
"globals": "^15.3.0",
"playwright": "^1.42.0",
"prettier": "^3.2.5",
"proxy-check": "^1.0.8",
"rollup": "^4.13.0",
"serve": "^14.2.1",
"stun": "^2.1.0",
"ws": "^8.16.0"
},
"scripts": {
"build": "rollup -c",
"test": "playwright test ./test",
"test-proxy": "PROXY=$(node ./scripts/find-proxy.js) npm run test",
"test-ice": "node scripts/test-ice.js",
"test-relays": "node scripts/test-relays.js"
},
"keywords": [
"webrtc",
"p2p",
"peer to peer",
"chat",
"pairing",
"matchmaking",
"serverless",
"torrent",
"bittorrent",
"webtorrent",
"ipfs",
"mqtt",
"nostr",
"firebase",
"realtime",
"decentralized",
"signaling",
"pairing",
"react",
"supabase"
]
}