-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 982 Bytes
/
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
{
"name": "use-voice-recorder",
"version": "1.0.4",
"description": "React hook for recording media from user device",
"keywords": [
"react",
"hook",
"MediaRecorder",
"audio recorder"
],
"scripts": {
"start": "npx tsc -w",
"build": "npx tsc",
"test": "npx jest"
},
"files": [
"package.json",
"README.md",
"lib"
],
"repository": "https://github.com/MrFranke/use-voice-recorder",
"author": "Mikhail Moskalev",
"license": "ISC",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"main": "lib/index.js",
"dependencies": {
"@types/react-dom": "^17.0.5",
"react": "^17.0.2"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.2",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}