-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
65
66
67
68
69
70
71
72
{
"name": "@dcdn/graphsync",
"version": "0.2.5",
"description": "JS implementation of GraphSync and DataTransfer protocols",
"main": "dist/src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node -f \"./dist/test/**/*.{node,spec}.js\" --cov",
"test:chrome": "aegir test -t browser -f \"./dist/test/**/*.spec.js\" --cov",
"version": "aegir -v",
"check": "aegir check"
},
"author": "Myel <thomas@myel.dev>",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myelnet/js-graphsync.git"
},
"type": "module",
"devDependencies": {
"@chainsafe/libp2p-noise": "^10.0.1",
"@libp2p/interface-mocks": "^8.0.1",
"@libp2p/mplex": "^7.1.0",
"@types/bl": "^5.0.2",
"@types/mime": "^2.0.3",
"@types/uuid": "^8.3.4",
"@types/varint": "^6.0.0",
"aegir": "^37.3.0",
"blockstore-core": "^2.0.2",
"ipfs-unixfs-importer": "^11.0.1",
"it-pair": "^1.0.0",
"prettier": "^2.6.1"
},
"dependencies": {
"@ipld/dag-cbor": "^7.0.1",
"@ipld/dag-pb": "^2.1.16",
"@libp2p/interface-connection": "^3.0.3",
"@libp2p/interface-peer-id": "^1.0.6",
"@libp2p/interface-registrar": "^2.0.4",
"@libp2p/peer-id": "^1.1.16",
"@libp2p/tcp": "^5.0.1",
"@multiformats/multiaddr": "^11.0.5",
"buffer": "^6.0.3",
"events": "^3.3.0",
"interface-blockstore": "^3.0.1",
"interface-store": "^2.0.2",
"ipfs-unixfs": "^8.0.0",
"it-drain": "^1.0.5",
"it-length-prefixed": "^8.0.3",
"it-pipe": "^2.0.2",
"libp2p": "^0.40.0",
"mime": "^3.0.0",
"multiformats": "^10.0.0",
"uint8arraylist": "^2.3.3",
"uint8arrays": "^4.0.2",
"uuid": "^8.3.2",
"varint": "^6.0.0"
},
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
}
}