steelseries-sonar-sdk 0.3.1 → 0.3.3
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/dist/functions/custom-fetch.d.ts +2 -0
- package/dist/index.js +6080 -387
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "steelseries-sonar-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "An SDK for interacting with the SteelSeries Sonar software.",
|
|
5
5
|
"author": "Harley Torrisi <mail@harleycodes.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"package": "bun package:clean && bun package:declarations && bun package:src",
|
|
35
35
|
"package:clean": "rimraf dist",
|
|
36
36
|
"package:declarations": "bunx tsc --emitDeclarationOnly --outDir dist -p tsconfig.build.json",
|
|
37
|
-
"package:src": "bun build src/index.ts --outdir dist"
|
|
37
|
+
"package:src": "bun build src/index.ts --outdir dist --target=node"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"node-fetch": "^3.3.2"
|
|
38
41
|
}
|
|
39
42
|
}
|