forked from closeio/mic-recorder-to-mp3
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 937 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
{
"name": "mic-recorder",
"version": "4.9.0",
"description": "Record your microphone audio input and get an audio/mp3 ouput buffer/blob.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc -p .",
"watch": "npx tsc -p . -w",
"release": "npm run build && git add -A && git commit -m \"auto release\" && npm version minor && git push && npm publish",
"clean": "rm -rf node_modules && npm cache clean --force"
},
"repository": "https://github.com/paraself/mic-recorder.git",
"author": "Yves Wang <[email protected]>",
"contributors": [
"Vitor Buzinaro <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"typescript": "^3.1.6"
},
"dependencies": {
"audio-buffer-from": "^1.1.1",
"lamejs": "^1.2.0",
"wav-encoder": "^1.3.0"
},
"peerDependencies": {
"webrtc-adapter": "^4.1.1"
},
"engines": {
"node": ">=8.11"
},
"typings": "dist/index.d.ts"
}