forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "ipfs-grpc-server",
"version": "0.6.1",
"description": "A server library for the IPFS gRPC API",
"keywords": [
"ipfs"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-grpc-server#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"files": [
"src",
"dist",
"!dist/*.tsbuildinfo"
],
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"browser": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"lint": "aegir ts -p check && aegir lint",
"test": "aegir test -t node",
"coverage": "nyc --reporter=text --reporter=lcov npm run test:node",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i ipfs-grpc-protocol -i aegir -i ipfs-core -i rimraf -i ipfs-core-types",
"build": "aegir build --no-bundle"
},
"dependencies": {
"@grpc/grpc-js": "^1.1.8",
"change-case": "^4.1.1",
"coercer": "^1.1.2",
"debug": "^4.1.1",
"ipfs-core-types": "^0.7.0",
"ipfs-grpc-protocol": "^0.4.0",
"it-first": "^1.0.4",
"it-map": "^1.0.4",
"it-peekable": "^1.0.2",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.2",
"multiaddr": "^10.0.0",
"nanoid": "^3.1.23",
"protobufjs": "^6.10.2",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/ws": "^7.4.0",
"aegir": "^34.0.2",
"ipfs-core": "^0.10.3",
"it-all": "^1.0.4",
"it-drain": "^1.0.3",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"uint8arrays": "^2.1.6"
}
}