dplayer-enhanced 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +168 -140
- package/dist/DPlayer.min.js +1 -1
- package/dist/DPlayer.min.js.map +1 -1
- package/package.json +78 -78
package/package.json
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dplayer-enhanced",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Enhanced DPlayer with comprehensive keyboard shortcuts - forked from DIYgod/DPlayer",
|
|
5
|
-
"main": "dist/DPlayer.min.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"start": "npm run dev",
|
|
8
|
-
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress",
|
|
9
|
-
"dev": "cross-env NODE_ENV=development webpack serve --config webpack/dev.config.js",
|
|
10
|
-
"test": "",
|
|
11
|
-
"format": "prettier \"**/*.{js,json,md}\" --write",
|
|
12
|
-
"docs:dev": "vuepress dev docs",
|
|
13
|
-
"docs:build": "vuepress build docs",
|
|
14
|
-
"prepare": "husky install"
|
|
15
|
-
},
|
|
16
|
-
"lint-staged": {
|
|
17
|
-
"**/*": "prettier --write --ignore-unknown"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"dist"
|
|
21
|
-
],
|
|
22
|
-
"repository": {
|
|
23
|
-
"url": "git+https://github.com/
|
|
24
|
-
"type": "git"
|
|
25
|
-
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
"player",
|
|
28
|
-
"danmaku",
|
|
29
|
-
"video",
|
|
30
|
-
"html5"
|
|
31
|
-
],
|
|
32
|
-
"author": "DIYgod",
|
|
33
|
-
"license": "MIT",
|
|
34
|
-
"bugs": {
|
|
35
|
-
"url": "https://github.com/
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://github.com/
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@babel/core": "^7.22.10",
|
|
40
|
-
"@babel/preset-env": "^7.22.10",
|
|
41
|
-
"@vuepress/plugin-pwa": "1.9.9",
|
|
42
|
-
"art-template": "4.13.2",
|
|
43
|
-
"art-template-loader": "1.4.3",
|
|
44
|
-
"autoprefixer": "^10.4.15",
|
|
45
|
-
"babel-loader": "^9.1.3",
|
|
46
|
-
"cross-env": "^7.0.0",
|
|
47
|
-
"css-loader": "^6.8.1",
|
|
48
|
-
"cssnano": "^6.0.1",
|
|
49
|
-
"exports-loader": "^4.0.0",
|
|
50
|
-
"file-loader": "^6.0.0",
|
|
51
|
-
"git-revision-webpack-plugin": "^5.0.0",
|
|
52
|
-
"husky": "^8.0.3",
|
|
53
|
-
"less": "^4.2.0",
|
|
54
|
-
"less-loader": "^11.1.3",
|
|
55
|
-
"lint-staged": "^13.3.0",
|
|
56
|
-
"mini-css-extract-plugin": "2.7.6",
|
|
57
|
-
"postcss": "^8.4.27",
|
|
58
|
-
"postcss-loader": "^7.3.3",
|
|
59
|
-
"postcss-preset-env": "^9.1.1",
|
|
60
|
-
"prettier": "^3.0.1",
|
|
61
|
-
"prettier-check": "^2.0.0",
|
|
62
|
-
"pretty-quick": "^3.0.0",
|
|
63
|
-
"strip-loader": "^0.1.2",
|
|
64
|
-
"style-loader": "^3.3.3",
|
|
65
|
-
"svg-inline-loader": "0.8.2",
|
|
66
|
-
"template-string-optimize-loader": "^3.0.0",
|
|
67
|
-
"url-loader": "^4.1.0",
|
|
68
|
-
"webpack": "^5.88.2",
|
|
69
|
-
"webpack-cli": "5.1.4",
|
|
70
|
-
"webpack-dev-server": "^4.15.1",
|
|
71
|
-
"yorkie": "^2.0.0"
|
|
72
|
-
},
|
|
73
|
-
"dependencies": {
|
|
74
|
-
"axios": "1.4.0",
|
|
75
|
-
"balloon-css": "^1.0.3",
|
|
76
|
-
"promise-polyfill": "8.3.0"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dplayer-enhanced",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Enhanced DPlayer with comprehensive keyboard shortcuts - forked from DIYgod/DPlayer",
|
|
5
|
+
"main": "dist/DPlayer.min.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "npm run dev",
|
|
8
|
+
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress",
|
|
9
|
+
"dev": "cross-env NODE_ENV=development webpack serve --config webpack/dev.config.js",
|
|
10
|
+
"test": "",
|
|
11
|
+
"format": "prettier \"**/*.{js,json,md}\" --write",
|
|
12
|
+
"docs:dev": "vuepress dev docs",
|
|
13
|
+
"docs:build": "vuepress build docs",
|
|
14
|
+
"prepare": "husky install"
|
|
15
|
+
},
|
|
16
|
+
"lint-staged": {
|
|
17
|
+
"**/*": "prettier --write --ignore-unknown"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"url": "git+https://github.com/Fluxonide/dplayer-enhanced.git",
|
|
24
|
+
"type": "git"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"player",
|
|
28
|
+
"danmaku",
|
|
29
|
+
"video",
|
|
30
|
+
"html5"
|
|
31
|
+
],
|
|
32
|
+
"author": "DIYgod",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/Fluxonide/dplayer-enhanced/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/Fluxonide/dplayer-enhanced#readme",
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@babel/core": "^7.22.10",
|
|
40
|
+
"@babel/preset-env": "^7.22.10",
|
|
41
|
+
"@vuepress/plugin-pwa": "1.9.9",
|
|
42
|
+
"art-template": "4.13.2",
|
|
43
|
+
"art-template-loader": "1.4.3",
|
|
44
|
+
"autoprefixer": "^10.4.15",
|
|
45
|
+
"babel-loader": "^9.1.3",
|
|
46
|
+
"cross-env": "^7.0.0",
|
|
47
|
+
"css-loader": "^6.8.1",
|
|
48
|
+
"cssnano": "^6.0.1",
|
|
49
|
+
"exports-loader": "^4.0.0",
|
|
50
|
+
"file-loader": "^6.0.0",
|
|
51
|
+
"git-revision-webpack-plugin": "^5.0.0",
|
|
52
|
+
"husky": "^8.0.3",
|
|
53
|
+
"less": "^4.2.0",
|
|
54
|
+
"less-loader": "^11.1.3",
|
|
55
|
+
"lint-staged": "^13.3.0",
|
|
56
|
+
"mini-css-extract-plugin": "2.7.6",
|
|
57
|
+
"postcss": "^8.4.27",
|
|
58
|
+
"postcss-loader": "^7.3.3",
|
|
59
|
+
"postcss-preset-env": "^9.1.1",
|
|
60
|
+
"prettier": "^3.0.1",
|
|
61
|
+
"prettier-check": "^2.0.0",
|
|
62
|
+
"pretty-quick": "^3.0.0",
|
|
63
|
+
"strip-loader": "^0.1.2",
|
|
64
|
+
"style-loader": "^3.3.3",
|
|
65
|
+
"svg-inline-loader": "0.8.2",
|
|
66
|
+
"template-string-optimize-loader": "^3.0.0",
|
|
67
|
+
"url-loader": "^4.1.0",
|
|
68
|
+
"webpack": "^5.88.2",
|
|
69
|
+
"webpack-cli": "5.1.4",
|
|
70
|
+
"webpack-dev-server": "^4.15.1",
|
|
71
|
+
"yorkie": "^2.0.0"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"axios": "1.4.0",
|
|
75
|
+
"balloon-css": "^1.0.3",
|
|
76
|
+
"promise-polyfill": "8.3.0"
|
|
77
|
+
}
|
|
78
|
+
}
|