-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 871 Bytes
/
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
{
"name": "ipfs-public-fetcher",
"version": "0.2.4",
"description": "Components core for fetch and display IPFS content using public gateways.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"compile": "tsc",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipesoccol/ipfs-public-fetcher.git"
},
"keywords": [
"ipfs",
"gateway"
],
"author": "@filipesoccol",
"license": "MIT",
"dependencies": {
"is-ipfs": "6.0.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}