pinata 2.5.4 → 2.5.5

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.
Files changed (3) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +1 -1
  3. package/package.json +63 -69
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
@@ -6,7 +6,7 @@ The new all-in-one Pinata SDK
6
6
 
7
7
  ## Quickstart
8
8
 
9
- [View the full documentation here](https://docs.pinata.cloud/sdk-beta/getting-started)
9
+ [View the full documentation here](https://docs.pinata.cloud/quickstart)
10
10
 
11
11
  ### 1. Install
12
12
 
package/package.json CHANGED
@@ -1,70 +1,64 @@
1
1
  {
2
- "name": "pinata",
3
- "version": "2.5.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": [
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
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/PinataCloud/pinata.git"
26
- },
27
- "keywords": [
28
- "ipfs",
29
- "sdk",
30
- "typescript"
31
- ],
32
- "author": "Steve Simkins",
33
- "license": "MIT",
34
- "bugs": {
35
- "url": "https://github.com/PinataCloud/pinata/issues"
36
- },
37
- "homepage": "https://github.com/PinataCloud/pinata",
38
- "peerDependencies": {
39
- "react": ">=16.8.0",
40
- "react-dom": ">=16.8.0"
41
- },
42
- "peerDependenciesMeta": {
43
- "react": {
44
- "optional": true
45
- },
46
- "react-dom": {
47
- "optional": true
48
- }
49
- },
50
- "devDependencies": {
51
- "@biomejs/biome": "1.9.4",
52
- "@types/jest": "^29.5.12",
53
- "@types/node": "^20.11.17",
54
- "@types/react": "^19.0.12",
55
- "jest": "^29.7.0",
56
- "ts-jest": "^29.2.2",
57
- "ts-node": "^10.9.2",
58
- "tsup": "^8.0.1",
59
- "typescript": "^5.3.3"
60
- },
61
- "engines": {
62
- "node": ">=20"
63
- },
64
- "scripts": {
65
- "build": "tsup",
66
- "format": "pnpm dlx @biomejs/biome@1.9.4 format --write src tests package.json",
67
- "test": "jest --verbose --coverage tests",
68
- "test:watch": "jest --watchAll --verbose --coverage tests"
69
- }
70
- }
2
+ "name": "pinata",
3
+ "version": "2.5.5",
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@1.9.4 format --write src tests package.json",
24
+ "test": "jest --verbose --coverage tests",
25
+ "test:watch": "jest --watchAll --verbose --coverage tests"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/PinataCloud/pinata.git"
30
+ },
31
+ "keywords": ["ipfs", "sdk", "typescript"],
32
+ "author": "Steve Simkins",
33
+ "license": "MIT",
34
+ "bugs": {
35
+ "url": "https://github.com/PinataCloud/pinata/issues"
36
+ },
37
+ "homepage": "https://github.com/PinataCloud/pinata",
38
+ "peerDependencies": {
39
+ "react": ">=16.8.0",
40
+ "react-dom": ">=16.8.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "react": {
44
+ "optional": true
45
+ },
46
+ "react-dom": {
47
+ "optional": true
48
+ }
49
+ },
50
+ "devDependencies": {
51
+ "@biomejs/biome": "1.9.4",
52
+ "@types/jest": "^29.5.12",
53
+ "@types/node": "^20.11.17",
54
+ "@types/react": "^19.0.12",
55
+ "jest": "^29.7.0",
56
+ "ts-jest": "^29.2.2",
57
+ "ts-node": "^10.9.2",
58
+ "tsup": "^8.0.1",
59
+ "typescript": "^5.3.3"
60
+ },
61
+ "engines": {
62
+ "node": ">=20"
63
+ }
64
+ }