-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "audio-track-mixer",
"version": "1.0.1",
"description": "A mixer which can mix two (or more) audio tracks (MediaStreamTrack) into one.",
"main": "lib/index.js",
"types": "types",
"scripts": {
"dev": "webpack --config webpack.dev.js",
"build": "rm -rf types && rm -rf lib && webpack --config webpack.prod.js",
"doc": "rm -rf docs && typedoc",
"patch": "npm version patch && npm run build",
"minor": "npm version minor && npm run build",
"major": "npm version major && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poplark/audio-track-mixer.git"
},
"keywords": [
"mixer",
"audio",
"media",
"stream",
"track",
"MediaStreamTrack"
],
"author": {
"name": "poplark",
"email": "songkang666@126.com",
"url": "https://github.com/poplark"
},
"files": [
"lib/index.js",
"types/**/*.d.ts",
"README-zh_CN.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/poplark/audio-track-mixer/issues"
},
"homepage": "https://github.com/poplark/audio-track-mixer#readme",
"devDependencies": {
"ts-loader": "^7.0.4",
"typedoc": "^0.17.7",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"bowser": "^2.11.0"
}
}