forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "ipfs-core-utils",
"version": "0.10.1",
"description": "Package to share code between ipfs and ipfs-http-client",
"author": "Alex Potsides <[email protected]>",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"leadMaintainer": "Alex Potsides <[email protected]>",
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/*.tsbuildinfo"
],
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
],
"src/": [
"dist/src/index"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"test": "aegir test",
"test:browser": "aegir test -t browser",
"test:electron": "aegir test -t electron-main",
"test:electron-renderer": "aegir test -t electron-renderer",
"test:node": "aegir test -t node",
"lint": "aegir ts -p check && aegir lint",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i rimraf -i ipfs-core-types",
"build": "aegir build --no-bundle"
},
"license": "MIT",
"dependencies": {
"any-signal": "^2.1.2",
"blob-to-it": "^1.0.1",
"browser-readablestream-to-it": "^1.0.1",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.7.0",
"ipfs-unixfs": "^6.0.3",
"ipfs-utils": "^8.1.4",
"it-all": "^1.0.4",
"it-map": "^1.0.4",
"it-peekable": "^1.0.2",
"multiaddr": "^10.0.0",
"multiaddr-to-uri": "^8.0.0",
"multiformats": "^9.4.1",
"parse-duration": "^1.0.0",
"timeout-abort-controller": "^1.1.1",
"uint8arrays": "^2.1.6"
},
"devDependencies": {
"@web-std/file": "^1.1.2",
"aegir": "^34.0.2",
"rimraf": "^3.0.2"
}
}