-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "p2pcf",
"version": "1.3.14",
"engines": {
"node": ">=12.0.0"
},
"description": "WebRTC signalling using Cloudflare Workers",
"main": "src/p2pcf.js",
"scripts": {
"build": "esbuild src/p2pcf.js --define:global=window --format=esm --bundle --outfile=dist/p2pcf.js",
"build:min": "esbuild src/p2pcf.js --minify --define:global=window --bundle --outfile=dist/p2pcf.min.js",
"test": "echo \"No tests.\"",
"start:worker": "wrangler dev"
},
"dependencies": {
"array-buffer-to-hex": "^1.0.0",
"base64-arraybuffer": "^1.0.2",
"convert-hex": "^0.1.0",
"events": "^3.3.0",
"get-browser-rtc": "^1.1.0",
"tiny-simple-peer": "^10.1.2"
},
"devDependencies": {
"airtap": "^4.0.4",
"browserify": "^17.0.0",
"esbuild": "^0.14.51",
"lint-staged": "^12.3.7",
"prettier": "^2.7.1",
"prettier-standard": "^15.0.1",
"standard": "^17.0.0",
"start-server-and-test": "^1.14.0",
"tape": "^5.5.3",
"tinyify": "^3.1.0",
"wrangler": "2.0.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfodor/p2pcf.git"
},
"keywords": [
"p2p",
"cf"
],
"author": "gfodor",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfodor/p2pcf/issues"
},
"homepage": "https://github.com/gfodor/p2pcf#readme",
"standard": {
"ignore": [
"dist"
]
}
}