@opendaw/studio-sdk 0.0.93 → 0.0.95

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.
@@ -0,0 +1,2 @@
1
+ export { OPENDAW_SDK_VERSION } from "./version";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,mBAAmB,EAAC,MAAM,WAAW,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export { OPENDAW_SDK_VERSION } from "./version";
@@ -0,0 +1,6 @@
1
+ /**
2
+ * The current version of the OpenDAW SDK.
3
+ * This value is automatically synchronized with package.json during publish.
4
+ */
5
+ export declare const OPENDAW_SDK_VERSION = "0.0.94";
6
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB,WAAW,CAAA"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * The current version of the OpenDAW SDK.
3
+ * This value is automatically synchronized with package.json during publish.
4
+ */
5
+ export const OPENDAW_SDK_VERSION = "0.0.94";
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@opendaw/studio-sdk",
3
- "version": "0.0.93",
3
+ "version": "0.0.95",
4
4
  "license": "LGPL-3.0-or-later",
5
+ "type": "module",
5
6
  "publishConfig": {
6
7
  "access": "public"
7
8
  },
@@ -20,24 +21,41 @@
20
21
  "synth",
21
22
  "fx"
22
23
  ],
24
+ "main": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.js"
30
+ }
31
+ },
23
32
  "files": [
33
+ "dist/**/*",
24
34
  "README.md"
25
35
  ],
36
+ "scripts": {
37
+ "sync-version": "node scripts/sync-version.js",
38
+ "build": "npm run sync-version && tsc",
39
+ "prepublishOnly": "npm run sync-version"
40
+ },
41
+ "devDependencies": {
42
+ "@opendaw/typescript-config": "^0.0.28"
43
+ },
26
44
  "dependencies": {
27
45
  "@opendaw/lib-box": "^0.0.67",
28
- "@opendaw/lib-dawproject": "^0.0.51",
29
- "@opendaw/lib-dom": "^0.0.67",
30
- "@opendaw/lib-dsp": "^0.0.65",
31
- "@opendaw/lib-fusion": "^0.0.71",
32
- "@opendaw/lib-jsx": "^0.0.67",
33
- "@opendaw/lib-midi": "^0.0.47",
46
+ "@opendaw/lib-dawproject": "^0.0.52",
47
+ "@opendaw/lib-dom": "^0.0.68",
48
+ "@opendaw/lib-dsp": "^0.0.66",
49
+ "@opendaw/lib-fusion": "^0.0.72",
50
+ "@opendaw/lib-jsx": "^0.0.68",
51
+ "@opendaw/lib-midi": "^0.0.48",
34
52
  "@opendaw/lib-runtime": "^0.0.65",
35
53
  "@opendaw/lib-std": "^0.0.65",
36
54
  "@opendaw/lib-xml": "^0.0.51",
37
- "@opendaw/studio-adapters": "^0.0.76",
38
- "@opendaw/studio-boxes": "^0.0.68",
39
- "@opendaw/studio-core": "^0.0.93",
40
- "@opendaw/studio-enums": "^0.0.57"
55
+ "@opendaw/studio-adapters": "^0.0.77",
56
+ "@opendaw/studio-boxes": "^0.0.69",
57
+ "@opendaw/studio-core": "^0.0.95",
58
+ "@opendaw/studio-enums": "^0.0.58"
41
59
  },
42
- "gitHead": "63d82cef8935683a8419bd146ba8da05c6034c08"
60
+ "gitHead": "8c01a73080270355a98b9377e0ba16e8226fffa4"
43
61
  }