forked from vocaroo/simple-audio-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "simple-audio-recorder",
"version": "1.2.1",
"description": "Web audio recording library with encoding to mp3 and chunked output",
"keywords": [
"audio",
"sound",
"recorder",
"mp3",
"encoder",
"microphone",
"react",
"hook"
],
"homepage": "https://github.com/vocaroo/simple-audio-recorder",
"repository": {
"type": "git",
"url": "git+https://github.com/vocaroo/simple-audio-recorder.git"
},
"main": "dist/audiorecorder.js",
"exports": {
".": "dist/audiorecorder.js",
"./react": "dist/react.js"
},
"scripts": {
"build": "webpack && webpack --config webpack.worker-config.js && webpack --config webpack.react-config.js",
"postbuild": "rm dist/*.LICENSE.txt",
"start": "concurrently \"webpack --watch\" \"webpack --watch --config webpack.worker-config.js\" \"webpack --watch --config webpack.react-config.js\" \"live-server --open=/examples/main-example/\""
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"concurrently": "^7.6.0",
"lamejstmp": "1.0.1",
"live-server": "1.2.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}