forked from samhirtarif/react-audio-recorder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.69 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-audio-voice-recorder",
"private": false,
"version": "2.2.0",
"type": "module",
"license": "MIT",
"author": "Samhir Tarif",
"repository": {
"type": "git",
"url": "https://github.com/samhirtarif/react-audio-recorder.git"
},
"keywords": [
"react",
"reactjs",
"nextjs",
"audio",
"voice",
"audio recording",
"audio recorder",
"voice recording",
"voice recorder",
"recorder",
"recording",
"getUserMedia",
"mediaDevices",
"ffmpeg",
"download audio",
"download",
"mp3",
"webm",
"wav",
"mpeg"
],
"files": [
"dist"
],
"module": "./dist/react-audio-voice-recorder.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-audio-voice-recorder.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.ts{,x}",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^7.4.6",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.2",
"vite": "^4.4.2",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^1.4.1",
"vitest": "^0.33.0"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.11.6",
"react-audio-visualize": "^1.1.3"
}
}