-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
80 lines (80 loc) · 2.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-voice-visualizer",
"private": false,
"version": "2.0.4",
"type": "module",
"author": "Yurii Zarytskyi",
"repository": {
"type": "git",
"url": "git+https://github.com/YZarytskyi/react-voice-visualizer.git"
},
"description": "React library for audio recording and visualization using Web Audio API",
"license": "MIT",
"keywords": [
"audio",
"recording",
"visualization",
"voice visualizer",
"audio visualizer",
"audio wave",
"audio recorder",
"audio recording",
"audio player",
"voice",
"recorder",
"recording",
"sound",
"microphone",
"media",
"voice recorder",
"voice recording",
"mediaDevices",
"getUserMedia",
"react",
"reactjs",
"library"
],
"files": [
"dist"
],
"main": "./dist/react-voice-visualizer.umd.cjs",
"module": "./dist/react-voice-visualizer.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-voice-visualizer.js",
"require": "./dist/react-voice-visualizer.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.1",
"eslint": "^8.44.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"prettier": "^3.0.0",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.5.3"
},
"bugs": {
"url": "https://github.com/YZarytskyi/react-voice-visualizer/issues"
},
"homepage": "https://github.com/YZarytskyi/react-voice-visualizer#readme"
}