forked from nicolvisser/react-audio-spectrogram-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.72 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-audio-spectrogram-player",
"version": "2.0.1",
"description": "An audioplayer written in React that shows a spectrogram along with the audio.",
"license": "MIT",
"author": "nicolvisser",
"keywords": [
"audio",
"player",
"speech",
"processing",
"visualization",
"tools"
],
"files": [
"dist",
"README.md",
"preview.png"
],
"type": "module",
"main": "./dist/react-audio-spectrogram-player.umd.js",
"module": "./dist/react-audio-spectrogram-player.es.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"import": "./dist/react-audio-spectrogram-player.es.js",
"require": "./dist/react-audio-spectrogram-player.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"colormap": "^2.3.2",
"rust-melspec-wasm": "^0.1.0-alpha.1"
},
"devDependencies": {
"@types/colormap": "^2.3.1",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"prettier": "^3.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-wasm": "^3.4.1"
},
"repository": "github:nicolvisser/react-audio-spectrogram-player",
"bugs": {
"url": "https://github.com/nicolvisser/react-audio-spectrogram-player/issues"
}
}