@waveform-playlist/browser 5.0.0-alpha.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/LICENSE.md +21 -0
- package/dist/index.d.ts +1536 -0
- package/dist/index.js +1371 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +24304 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@waveform-playlist/browser",
|
|
3
|
+
"version": "5.0.0-alpha.0",
|
|
4
|
+
"description": "Browser bundle for waveform-playlist with React",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"keywords": [
|
|
17
|
+
"waveform",
|
|
18
|
+
"audio",
|
|
19
|
+
"browser",
|
|
20
|
+
"react",
|
|
21
|
+
"waveform-playlist",
|
|
22
|
+
"audio-editor",
|
|
23
|
+
"multitrack"
|
|
24
|
+
],
|
|
25
|
+
"author": "Naomi Aro",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/naomiaro/waveform-playlist.git",
|
|
30
|
+
"directory": "packages/browser"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://naomiaro.github.io/waveform-playlist",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/naomiaro/waveform-playlist/issues"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"README.md"
|
|
39
|
+
],
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^20.10.6",
|
|
42
|
+
"@types/react": "^18.2.45",
|
|
43
|
+
"@types/react-dom": "^18.2.18",
|
|
44
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
45
|
+
"typescript": "^5.3.3",
|
|
46
|
+
"vite": "^7.2.4",
|
|
47
|
+
"vite-plugin-dts": "^4.5.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@dnd-kit/core": "^6.3.1",
|
|
51
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
52
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
53
|
+
"react": "^18.2.0",
|
|
54
|
+
"react-dom": "^18.2.0",
|
|
55
|
+
"styled-components": "^6.1.8",
|
|
56
|
+
"tone": "15.1.22",
|
|
57
|
+
"uuid": "^13.0.0",
|
|
58
|
+
"waveform-data": "^4.5.2",
|
|
59
|
+
"@waveform-playlist/loaders": "5.0.0-alpha.0",
|
|
60
|
+
"@waveform-playlist/recording": "5.0.0-alpha.0",
|
|
61
|
+
"@waveform-playlist/annotations": "5.0.0-alpha.0",
|
|
62
|
+
"@waveform-playlist/core": "5.0.0-alpha.0",
|
|
63
|
+
"@waveform-playlist/ui-components": "5.0.0-alpha.0",
|
|
64
|
+
"@waveform-playlist/webaudio-peaks": "1.0.0",
|
|
65
|
+
"@waveform-playlist/playout": "5.0.0-alpha.0"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "pnpm typecheck && vite build",
|
|
69
|
+
"dev": "vite build --watch",
|
|
70
|
+
"typecheck": "tsc --noEmit"
|
|
71
|
+
}
|
|
72
|
+
}
|