-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 KB
/
package.json
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
{
"name": "react-audio-visualizer-pro",
"version": "0.4.1",
"description": "Customizable React components for real-time audio visualization",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"dev": "vite",
"build:playground": "vite build"
},
"peerDependencies": {
"react": "17.x || 18.x || 19.x",
"react-dom": "17.x || 18.x || 19.x"
},
"dependencies": {
"@emotion/styled": "11.14.0",
"tslib": "2.8.1"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@types/node": "22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"jest": "29.7.0",
"rollup": "4.28.1",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "5.7.2",
"vite": "6.0.3"
},
"sideEffects": false,
"keywords": [
"react",
"audio",
"visualization",
"waveform",
"spectrum",
"frequency",
"web audio api"
],
"author": "SujalXplores",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SujalXplores/react-audio-visualizer-pro"
}
}