soundcloud-api-ts-next 1.4.0 → 1.4.1
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/README.md +1 -1
- package/package.json +10 -8
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
React hooks and Next.js API route handlers for the SoundCloud API. Client secrets stay on the server.
|
|
8
8
|
|
|
9
|
-
Built on [soundcloud-api-ts](https://github.com/twin-paws/soundcloud-api-ts).
|
|
9
|
+
[**API Docs**](https://twin-paws.github.io/soundcloud-api-ts-next/) · Built on [soundcloud-api-ts](https://github.com/twin-paws/soundcloud-api-ts).
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soundcloud-api-ts-next",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Next.js integration for soundcloud-api-ts — React hooks + secure API route handlers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/twin-paws/soundcloud-api-ts-next"
|
|
9
9
|
},
|
|
10
|
-
"homepage": "https://
|
|
10
|
+
"homepage": "https://twin-paws.github.io/soundcloud-api-ts-next/",
|
|
11
11
|
"keywords": [
|
|
12
12
|
"soundcloud",
|
|
13
13
|
"nextjs",
|
|
@@ -39,14 +39,15 @@
|
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "tsup",
|
|
41
41
|
"dev": "tsup --watch",
|
|
42
|
-
"typecheck": "tsc --noEmit"
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"docs": "typedoc"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
46
|
"soundcloud-api-ts": "^1.9.1"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
49
|
+
"next": "^13.0.0 || ^14.0.0 || ^15.0.0",
|
|
50
|
+
"react": "^18.0.0 || ^19.0.0"
|
|
50
51
|
},
|
|
51
52
|
"peerDependenciesMeta": {
|
|
52
53
|
"next": {
|
|
@@ -54,10 +55,11 @@
|
|
|
54
55
|
}
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"typescript": "^5.7.0",
|
|
58
|
-
"tsup": "^8.0.0",
|
|
59
58
|
"@types/react": "^19.0.0",
|
|
59
|
+
"next": "^15.0.0",
|
|
60
60
|
"react": "^19.0.0",
|
|
61
|
-
"
|
|
61
|
+
"tsup": "^8.0.0",
|
|
62
|
+
"typedoc": "^0.28.16",
|
|
63
|
+
"typescript": "^5.7.0"
|
|
62
64
|
}
|
|
63
65
|
}
|