-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 960 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
43
44
45
{
"name": "recorder-realtime",
"version": "1.2.0",
"description": "a realtime audio recorder that can generate pcm or mp3 with configurable sample rate and bit depth",
"private": false,
"author": "ivan liu",
"keywords": [
"PCM",
"Decoder",
"Resampler",
"Streamer",
"Audio",
"Microphone",
"Recorder",
"Wav",
"mp3",
"Wave",
"WebAssembly"
],
"license": "MIT",
"main": "dist/recorder.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/18566246732/recorder-realtime.git"
},
"scripts": {
"webpack": "webpack"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"worker-loader": "^2.0.0"
},
"dependencies": {
"babel-loader": "^7.1.5",
"lamejs": "^1.2.0"
}
}