forked from PinataCloud/pinata
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "pinata-web3",
"version": "0.5.4",
"description": "The new Pinata IPFS SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --external none",
"format": "npx @biomejs/biome format --write src tests",
"test": "jest --watchAll --verbose --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/PinataCloud/pinata-web3.git"
},
"keywords": ["ipfs", "sdk", "typescript"],
"author": "Steve Simkins",
"license": "MIT",
"bugs": {
"url": "https://github.com/PinataCloud/pinata-web3/issues"
},
"homepage": "https://github.com/PinataCloud/pinata-web3",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.7.7",
"form-data": "^4.0.0",
"is-ipfs": "^8.0.4",
"node-fetch": "^3.3.1"
}
}