pinata 2.4.2 → 2.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,69 +1,63 @@
1
1
  {
2
- "name": "pinata",
3
- "version": "2.4.2",
4
- "description": "The official Pinata SDK",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "files": [
9
- "dist"
10
- ],
11
- "exports": {
12
- ".": {
13
- "types": "./dist/index.d.ts",
14
- "require": "./dist/index.js",
15
- "import": "./dist/index.mjs"
16
- },
17
- "./react": {
18
- "types": "./dist/react/index.d.ts",
19
- "require": "./dist/react/index.js",
20
- "import": "./dist/react/index.mjs"
21
- }
22
- },
23
- "scripts": {
24
- "build": "tsup",
25
- "format": "pnpm dlx @biomejs/biome format --write src tests",
26
- "test": "jest --watchAll --verbose --coverage"
27
- },
28
- "repository": {
29
- "type": "git",
30
- "url": "git+https://github.com/PinataCloud/pinata.git"
31
- },
32
- "keywords": [
33
- "ipfs",
34
- "sdk",
35
- "typescript"
36
- ],
37
- "author": "Steve Simkins",
38
- "license": "MIT",
39
- "bugs": {
40
- "url": "https://github.com/PinataCloud/pinata/issues"
41
- },
42
- "homepage": "https://github.com/PinataCloud/pinata",
43
- "peerDependencies": {
44
- "react": ">=16.8.0",
45
- "react-dom": ">=16.8.0"
46
- },
47
- "peerDependenciesMeta": {
48
- "react": {
49
- "optional": true
50
- },
51
- "react-dom": {
52
- "optional": true
53
- }
54
- },
55
- "devDependencies": {
56
- "@biomejs/biome": "1.8.3",
57
- "@types/jest": "^29.5.12",
58
- "@types/node": "^20.11.17",
59
- "@types/react": "^19.0.12",
60
- "jest": "^29.7.0",
61
- "ts-jest": "^29.2.2",
62
- "ts-node": "^10.9.2",
63
- "tsup": "^8.0.1",
64
- "typescript": "^5.3.3"
65
- },
66
- "engines": {
67
- "node": ">=20"
68
- }
2
+ "name": "pinata",
3
+ "version": "2.4.4",
4
+ "description": "The official Pinata SDK",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "files": ["dist"],
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "require": "./dist/index.js",
13
+ "import": "./dist/index.mjs"
14
+ },
15
+ "./react": {
16
+ "types": "./dist/react/index.d.ts",
17
+ "require": "./dist/react/index.js",
18
+ "import": "./dist/react/index.mjs"
19
+ }
20
+ },
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "format": "pnpm dlx @biomejs/biome format --write src tests",
24
+ "test": "jest --watchAll --verbose --coverage tests"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/PinataCloud/pinata.git"
29
+ },
30
+ "keywords": ["ipfs", "sdk", "typescript"],
31
+ "author": "Steve Simkins",
32
+ "license": "MIT",
33
+ "bugs": {
34
+ "url": "https://github.com/PinataCloud/pinata/issues"
35
+ },
36
+ "homepage": "https://github.com/PinataCloud/pinata",
37
+ "peerDependencies": {
38
+ "react": ">=16.8.0",
39
+ "react-dom": ">=16.8.0"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "react": {
43
+ "optional": true
44
+ },
45
+ "react-dom": {
46
+ "optional": true
47
+ }
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "1.8.3",
51
+ "@types/jest": "^29.5.12",
52
+ "@types/node": "^20.11.17",
53
+ "@types/react": "^19.0.12",
54
+ "jest": "^29.7.0",
55
+ "ts-jest": "^29.2.2",
56
+ "ts-node": "^10.9.2",
57
+ "tsup": "^8.0.1",
58
+ "typescript": "^5.3.3"
59
+ },
60
+ "engines": {
61
+ "node": ">=20"
62
+ }
69
63
  }