@songram/songram-daw-engine 3.1.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/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@songram/songram-daw-engine",
3
+ "version": "3.1.0",
4
+ "description": "Headless Songram DAW engine with transport, tracks, audio runtime, events, and plugins",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ }
14
+ },
15
+ "sideEffects": false,
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "dependencies": {
21
+ "@tonejs/midi": "^2.0.28",
22
+ "eventemitter3": "^5.0.1",
23
+ "soundfont2": "^0.5.0",
24
+ "tone": "^15.0.0",
25
+ "uuid": "^13.0.0",
26
+ "waveform-data": "^4.5.2"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "^20.10.6",
30
+ "typescript": "^5.3.3",
31
+ "vite": "^7.2.4",
32
+ "vite-plugin-dts": "^4.5.0"
33
+ },
34
+ "scripts": {
35
+ "build": "pnpm typecheck && vite build",
36
+ "dev": "vite build --watch",
37
+ "typecheck": "tsc --noEmit"
38
+ }
39
+ }