forked from RangerMauve/hyper-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.57 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.57 KB
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
86
87
88
89
90
{
"name": "hyper-sdk",
"version": "3.0.3",
"description": "A Software Development Kit for the Hypercore-Protocol",
"main": "index.js",
"scripts": {
"test": "node test/test.js",
"build": "cross-env BABEL_DISABLE_CACHE=1 browserify -t [ babelify --global ] --standalone hyperSDK index.js > hyper-sdk-bundle.js",
"build-test": "cross-env BABEL_DISABLE_CACHE=1 browserify -t [ babelify --global ] -d test/test.js > test-bundle.js",
"update-deps": "npm install --save hyperswarm@latest @corestore/networker@latest hyperdrive@latest corestore@latest hypercore@latest hypercore-protocol@latest hypercore-crypto@latest @geut/hyperdrive-promise@latest @geut/hypercore-promise@latest",
"test-proxy": "run-p proxy:hyperspace proxy:hyperswarm",
"proxy:hyperspace": "node test/bin/hyperspace-webnet-servers.js",
"proxy:hyperswarm": "hyperswarm-web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datproject/sdk.git"
},
"keywords": [
"dat",
"sdk",
"hyperdrive",
"hypercore",
"hypercore-protocol",
"p2p"
],
"author": "datproject",
"license": "MIT",
"bugs": {
"url": "https://github.com/datproject/sdk/issues"
},
"browser": {
"dat-dns": "./dns-web.js",
"hyperswarm": "hyperswarm-web",
"net": "webnet"
},
"browserify": {
"transform": [
[
"babelify",
{
"global": true
}
]
]
},
"homepage": "https://github.com/datproject/sdk#readme",
"files": [
"README.md",
"index.js",
"dns-web.js",
"babel.config.json",
"native.js",
"sdk.js",
"hyperspace.js"
],
"dependencies": {
"@corestore/networker": "^1.0.4",
"@geut/hypercore-promise": "^2.1.1",
"@geut/hyperdrive-promise": "^3.1.0",
"@hyperspace/client": "^1.12.0",
"corestore": "^5.8.1",
"dat-dns": "^4.0.0",
"dat-encoding": "^5.0.1",
"hypercore": "^9.6.0",
"hypercore-crypto": "^2.1.1",
"hypercore-protocol": "^8.0.7",
"hyperdrive": "^10.18.0",
"hyperswarm": "^2.15.2",
"hyperswarm-web": "^2.1.1",
"random-access-application": "^1.0.0",
"random-access-memory": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"babel-plugin-module-resolver": "^4.0.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cross-env": "^7.0.2",
"hyperspace": "^3.9.0",
"npm-run-all": "^4.1.5",
"random-access-file": "^2.1.3",
"tape": "^4.10.2",
"tmp": "^0.1.0",
"tmp-promise": "^3.0.2",
"util": "^0.12.2",
"webnet": "^1.0.0"
}
}