-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "@fabianbormann/meerkat",
"version": "1.0.16",
"description": "Browser-to-browser networking built on WebTorrent",
"main": "dist/meerkat.min.js",
"module": "dist/meerkat.min.js",
"scripts": {
"build": "webpack && tsc --emitDeclarationOnly",
"test": "npm run build && cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabianbormann/meerkat.git"
},
"keywords": [
"WebTorrent",
"Peer to peer",
"WebRTC"
],
"files": [
"dist"
],
"types": "dist/meerkat.d.ts",
"author": "Fabian Bormann",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fabianbormann/meerkat/issues"
},
"homepage": "https://github.com/fabianbormann/meerkat#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/bs58check": "^2.1.2",
"@types/ripemd160": "^2.0.3",
"@types/webtorrent": "^0.109.8",
"babel-loader": "^9.1.3",
"browsify": "^0.0.4",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"crypto-browserify": "^3.12.0",
"cypress": "^13.6.6",
"https-browserify": "^1.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^5.4.2",
"util": "^0.12.5",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@rvagg/ripemd160": "^2.2.4",
"bs58": "^5.0.0",
"bs58check": "^3.0.1",
"tweetnacl": "^1.0.3",
"webtorrent": "^2.1.37"
}
}