-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 990 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 990 Bytes
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
{
"name": "public-ipfs-gateway",
"description": "Get Public IPFS gateway url easily",
"author": "codev911",
"version": "1.1.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsup",
"format": "prettier --write lib/*.ts tests/*.ts",
"test": "jest"
},
"devDependencies": {
"@swc/core": "^1.3.105",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^14.18.63",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"util": "^0.12.5"
},
"dependencies": {
"axios": "^1.7.7"
},
"keywords": [
"ipfs-gateway",
"public-ipfs-gateway",
"ipfs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codev911/public-ipfs-gateway.git"
}
}