svelte-attach-sound 0.1.4 → 0.1.5
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 +10 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-attach-sound",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A Svelte attachment for binding sound playback to DOM events using the Web Audio API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"attachment",
|
|
@@ -28,24 +28,21 @@
|
|
|
28
28
|
".": "./dist/index.js",
|
|
29
29
|
"./package.json": "./package.json"
|
|
30
30
|
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "tsdown",
|
|
33
|
-
"dev": "tsdown --watch",
|
|
34
|
-
"test": "vitest",
|
|
35
|
-
"typecheck": "tsc --noEmit",
|
|
36
|
-
"prepublishOnly": "bun run build"
|
|
37
|
-
},
|
|
38
31
|
"devDependencies": {
|
|
39
32
|
"@types/node": "^25.0.3",
|
|
40
33
|
"bumpp": "^11.0.1",
|
|
41
|
-
"oxfmt": "^0.41.0",
|
|
42
|
-
"oxlint": "^1.56.0",
|
|
43
34
|
"svelte": "^5.55.0",
|
|
44
|
-
"tsdown": "^0.21.4",
|
|
45
35
|
"typescript": "^6.0.2",
|
|
46
|
-
"
|
|
36
|
+
"vite-plus": "latest",
|
|
37
|
+
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
47
38
|
},
|
|
48
39
|
"peerDependencies": {
|
|
49
40
|
"svelte": ">=5.55.0"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "vp pack",
|
|
44
|
+
"dev": "vp pack --watch",
|
|
45
|
+
"test": "vp test",
|
|
46
|
+
"typecheck": "tsc --noEmit"
|
|
50
47
|
}
|
|
51
|
-
}
|
|
48
|
+
}
|