-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "@fabianbormann/meerkat",
"version": "1.0.17",
"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",
"clean": "rm -rf dist"
},
"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.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/bs58check": "^2.1.2",
"@types/ripemd160": "^2.0.3",
"@types/webtorrent": "^0.110.0",
"babel-loader": "^9.2.1",
"browsify": "^0.0.4",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"crypto-browserify": "^3.12.1",
"cypress": "^13.16.0",
"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.7.2",
"util": "^0.12.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@rvagg/ripemd160": "^2.2.4",
"bs58": "^6.0.0",
"bs58check": "^4.0.0",
"ip": "^2.0.1",
"tweetnacl": "^1.0.3",
"vm-browserify": "^1.1.2",
"webtorrent": "^2.5.7"
}
}