@kidlib/web-audio 0.1.0 → 0.1.1
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 +8 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1394 -1470
- package/package.json +5 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kidlib/web-audio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "High-level Web Audio primitives for musical instruments and tools.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -31,28 +31,19 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build:worklets": "node build-processors.js
|
|
34
|
+
"build:worklets": "node build-processors.js",
|
|
35
35
|
"build": "pnpm clean && node build-processors.js && vite build",
|
|
36
36
|
"prepack": "pnpm build",
|
|
37
37
|
"watch:processors": "node watch-processors.js",
|
|
38
|
-
"watch": "
|
|
39
|
-
"clean": "rimraf dist
|
|
40
|
-
"clean:turbo": "rimraf .turbo",
|
|
41
|
-
"clean:all": "rimraf dist node_modules && pnpm store prune && pnpm prune",
|
|
42
|
-
"lint": "eslint . ",
|
|
43
|
-
"lint:fix": "eslint . --fix",
|
|
44
|
-
"format": "prettier --write .",
|
|
45
|
-
"format:check": "prettier --check .",
|
|
46
|
-
"preview": "vite preview",
|
|
47
|
-
"pretest": "pnpm build:worklets",
|
|
38
|
+
"watch": "pnpm build:worklets && concurrently \"vitest\" \"vite build --watch\" \"pnpm watch:processors\"",
|
|
39
|
+
"clean": "rimraf dist",
|
|
48
40
|
"test": "vitest run",
|
|
49
41
|
"test:browser": "vitest run --config vitest.browser.config.ts",
|
|
50
42
|
"test:coverage": "vitest run --coverage",
|
|
51
43
|
"test:watch": "vitest",
|
|
52
|
-
"test:all": "
|
|
44
|
+
"test:all": "pnpm test && pnpm test:browser"
|
|
53
45
|
},
|
|
54
46
|
"dependencies": {
|
|
55
|
-
"dexie": "^4.0.11",
|
|
56
47
|
"webmidi": "^3.1.13"
|
|
57
48
|
},
|
|
58
49
|
"devDependencies": {
|