@dawcore/transport 0.0.7 → 0.0.8

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 -4
  2. package/package.json +1 -5
package/README.md CHANGED
@@ -20,10 +20,7 @@ Native Web Audio transport for multi-track audio scheduling, looping, tempo, and
20
20
  npm install @dawcore/transport
21
21
  ```
22
22
 
23
- Peer dependencies:
24
- ```bash
25
- npm install @waveform-playlist/core @waveform-playlist/engine
26
- ```
23
+ No runtime dependencies. When using `NativePlayoutAdapter` (bridge to `@waveform-playlist/engine`), install `@waveform-playlist/core` and `@waveform-playlist/engine` alongside.
27
24
 
28
25
  ## Quick Start
29
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dawcore/transport",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Native Web Audio transport for waveform-playlist — scheduling, looping, tempo, metronome",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -38,10 +38,6 @@
38
38
  "@waveform-playlist/core": "12.0.0",
39
39
  "@waveform-playlist/engine": "12.0.0"
40
40
  },
41
- "peerDependencies": {
42
- "@waveform-playlist/core": ">=11.0.0",
43
- "@waveform-playlist/engine": ">=11.0.0"
44
- },
45
41
  "dependencies": {},
46
42
  "scripts": {
47
43
  "build": "pnpm typecheck && tsup",