-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 949 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
{
"name": "wmplayer",
"version": "1.0.1-alpha",
"description": "wmplayer实现对AudioContext的封装,可以快速的开发音乐播放器,可以对音频分析,做音频可视化",
"main": "dist/umd/index.min.js",
"module": "dist/es/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "rollup -c"
},
"files": [
"package.json",
"readme.md",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hans000/wmplayer.git"
},
"keywords": [
"audiocontext",
"audio",
"music",
"visual"
],
"author": "hans000",
"license": "MIT",
"bugs": {
"url": "https://github.com/hans000/wmplayer/issues"
},
"homepage": "https://github.com/hans000/wmplayer#readme",
"devDependencies": {
"ts-loader": "^7.0.5",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^3.9.5"
}
}