-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 KB
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
{
"name": "pinata",
"version": "2.5.6",
"description": "The official Pinata SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"require": "./dist/react/index.js",
"import": "./dist/react/index.mjs"
}
},
"scripts": {
"build": "tsup",
"format": "pnpm dlx @biomejs/biome@1.9.4 format --write src tests package.json",
"test": "jest --verbose --coverage tests",
"test:watch": "jest --watchAll --verbose --coverage tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PinataCloud/pinata.git"
},
"keywords": ["ipfs", "sdk", "typescript"],
"author": "Steve Simkins",
"license": "MIT",
"bugs": {
"url": "https://github.com/PinataCloud/pinata/issues"
},
"homepage": "https://github.com/PinataCloud/pinata",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/react": "^19.0.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
}
}