midiwire 0.8.0 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -36,7 +36,7 @@ Or use directly in the browser from a CDN like [jsDelivr](https://www.jsdelivr.c
36
36
 
37
37
  <!-- Or specify a version if needed -->
38
38
  <script type="module">
39
- import { createMIDIController } from "https://cdn.jsdelivr.net/npm/midiwire@0.8.0/+esm";
39
+ import { createMIDIController } from "https://cdn.jsdelivr.net/npm/midiwire@0.9.0/+esm";
40
40
  </script>
41
41
  ```
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "midiwire",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Declarative JavaScript library for browser-based MIDI control",
5
5
  "type": "module",
6
6
  "main": "./dist/midiwire.umd.js",
@@ -64,6 +64,14 @@
64
64
  "vite-plugin-dts": "4.5.4",
65
65
  "vitest": "4.0.17"
66
66
  },
67
+ "peerDependencies": {
68
+ "typescript": ">=5.0.0"
69
+ },
70
+ "peerDependenciesMeta": {
71
+ "typescript": {
72
+ "optional": true
73
+ }
74
+ },
67
75
  "engines": {
68
76
  "node": ">=20.0.0"
69
77
  }