forked from MoePlayer/vue-aplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.42 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@hitokoto/vue-aplayer",
"version": "1.0.0",
"description": "A beautiful HTML5 music player for Vue.js",
"author": "a632079 <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --report --target lib --name VueAPlayer packages/@moefe/vue-aplayer/index.ts",
"lint": "vue-cli-service lint packages",
"build:example": "vue-cli-service build --dest demo",
"contributors": "all-contributors",
"docs:build": "yarn docs:prebuild && vuepress build docs",
"docs:dev": "vuepress dev docs --debug --port 3000",
"docs:link": "yarn link && yarn link \"@moefe/vue-aplayer\"",
"docs:prebuild": "yarn build && yarn docs:link",
"format": "prettier-eslint \"**/*.{js,jsx,json,ts,tsx,scss,vue,md}\" --write",
"lint:prettier": "prettier-eslint-check \"**/*.{js,jsx,json,ts,tsx,scss,vue,md}\"",
"prepublishOnly": "yarn build",
"test:types": "dtslint types"
},
"main": "dist/VueAPlayer.common.js",
"unpkg": "dist/VueAPlayer.umd.min.js",
"files": [
"dist",
"types"
],
"dependencies": {
"humps": "^2.0.1",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@types/classnames": "^2.3.1",
"@types/hls.js": "^1.0.0",
"@types/humps": "^2.0.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0-rc.1",
"@vue/cli-plugin-eslint": "~5.0.0-rc.1",
"@vue/cli-plugin-typescript": "~5.0.0-rc.1",
"@vue/cli-service": "~5.0.0-rc.1",
"@vue/compiler-sfc": "^3.2.23",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vuepress/plugin-pwa": "^1.8.2",
"all-contributors-cli": "^6.20.0",
"babel-loader": "^8.2.3",
"classnames": "^2.3.1",
"copy-webpack-plugin": "^10.0.0",
"dayjs": "^1.10.7",
"dtslint": "^4.2.1",
"eslint": "7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"eslint-plugin-vuejs-accessibility": "^1.1.0",
"git-revision-webpack-plugin": "^5.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"prettier-eslint-check": "^1.0.3",
"prettier-eslint-cli": "^5.0.1",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"vue-class-component": "^7.2.6",
"vue-loader": "next",
"vue-property-decorator": "^9.1.2",
"vue-svg-loader": "beta",
"vue-template-compiler": "^2.6.14",
"vue-tsx-support": "^3.2.0",
"vuepress": "^1.8.2",
"webpack": "^5.64.4"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/MoePlayer/vue-aplayer/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/MoePlayer/vue-aplayer#readme",
"jsdelivr": "dist/VueAPlayer.umd.min.js",
"keywords": [
"player",
"aplayer",
"vue-aplayer",
"music",
"html5",
"audio",
"media"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,json,ts,tsx,scss,vue,md}": "prettier --write",
"*.{js,jsx,ts,tsx,vue}": "vue-cli-service lint"
},
"packageManager": "[email protected]",
"repository": {
"url": "git+https://github.com/MoePlayer/vue-aplayer.git",
"type": "git"
},
"types": "types/index.d.ts"
}