-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "hypershell",
"version": "0.0.15",
"description": "Spawn shells anywhere. Fully peer-to-peer, authenticated, and end to end encrypted",
"main": "index.js",
"bin": {
"hypershell-server": "./bin/server.js",
"hypershell": "./bin/client.js",
"hypershell-copy": "./bin/copy.js",
"hypershell-keygen": "./bin/keygen.js"
},
"scripts": {
"test": "standard && brittle test/*.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/hypershell.git"
},
"author": "Lucas Barrena (@LuKks)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/hypershell/issues"
},
"homepage": "https://github.com/holepunchto/hypershell",
"dependencies": {
"@hyperswarm/secret-stream": "^6.1.0",
"commander": "^9.4.1",
"compact-encoding": "^2.11.0",
"graceful-goodbye": "^1.1.0",
"hypercore-id-encoding": "^1.2.0",
"hyperdht": "^6.6.0",
"keypear": "^1.1.1",
"protomux": "^3.4.0",
"pump": "^3.0.0",
"read-file-live": "^1.0.1",
"ready-resource": "^1.0.0",
"safety-catch": "^1.0.2",
"tar-fs": "^2.1.1",
"tiny-configs": "^1.1.0",
"tt-native": "^1.0.2"
},
"devDependencies": {
"brittle": "^3.1.0",
"standard": "^17.0.0"
}
}