node-iracing-sdk 0.2.0 → 0.3.0

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 CHANGED
@@ -15,7 +15,7 @@ npm install node-iracing-sdk
15
15
  TypeScript types are published separately:
16
16
 
17
17
  ```bash
18
- npm install --save-dev @types/node-iracing-sdk
18
+ npm install --save-dev node-iracing-sdk-types
19
19
  ```
20
20
 
21
21
  ### Prebuilt binaries
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-iracing-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Node.js bindings for the iRacing SDK client with event-driven telemetry",
5
5
  "main": "dist/index.js",
6
6
  "gypfile": false,
@@ -16,7 +16,7 @@
16
16
  "node-gyp-build": "^4.8.1"
17
17
  },
18
18
  "devDependencies": {
19
- "@types/node-iracing-sdk": "file:../types",
19
+ "node-iracing-sdk-types": "file:../types",
20
20
  "@types/node": "^22.0.0",
21
21
  "prebuildify": "^6.0.0",
22
22
  "typescript": "^5.6.0"
@@ -27,5 +27,9 @@
27
27
  "binding.gyp",
28
28
  "README.md",
29
29
  "LICENSE"
30
- ]
31
- }
30
+ ],
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/richard-ive/node-iracing-sdk.git"
34
+ }
35
+ }