-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
106 lines (106 loc) · 3.13 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
{
"name": "xmvideoplayer",
"private": true,
"version": "0.6.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky install",
"eslint": "eslint src",
"stylelint": "stylelint \"**/*.{css,less,scss,styl,vue}\"",
"stylelint:fix": "stylelint --fix \"**/*.{css,less,scss,styl,vue}\"",
"lint": "npm run eslint && npm run stylelint",
"lint-staged": "lint-staged --allow-empty",
"lint-staged:js": "eslint",
"lint-staged:css": "stylelint",
"changelog": "standard-changelog",
"tsc": "vue-tsc --noEmit --skipLibCheck",
"cz": "cz"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": [
"npm run lint-staged:js"
],
"**/*.{less,css,scss,vue}": "npm run lint-staged:css",
"**/*.{js,jsx,ts,tsx,vue,less,css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@arco-design/web-vue": "^2.55.2",
"@singcl/dplayer": "^2.0.0",
"@singcl/throttle-debounce": "^1.1.1",
"@tauri-apps/api": "^1.5.6",
"@vueuse/core": "^10.10.0",
"@vueuse/rxjs": "^10.6.1",
"clipboard": "^2.0.11",
"dashjs": "^4.4.1",
"dexie": "^4.0.7",
"flv.js": "^1.6.2",
"hls.js": "^1.2.3",
"pinia": "^2.1.7",
"pinyin-match": "^1.2.2",
"unplugin-svg-component": "^0.7.6",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"author": "singcl<imbabyer@gmail.com>",
"homepage": "https://github.com/singcl/XmVideoPlayer",
"repository": {
"type": "git",
"url": "git+https://github.com/singcl/XmVideoPlayer.git"
},
"devDependencies": {
"@arco-plugins/vite-vue": "^1.4.5",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@tauri-apps/cli": "^1.5.14",
"@types/dplayer": "^1.25.2",
"@types/hls.js": "^1.0.0",
"@types/node": "18.8.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-vue": "^5.0.5",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.5.1",
"husky": "^8.0.0",
"husky-init": "^8.0.0",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-html": "^1.5.0",
"postcss-sorting": "^7.0.1",
"prettier": "^2.7.1",
"standard-changelog": "^2.0.27",
"stylelint": "^14.14.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.12",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^2.0.19"
},
"engines": {
"node": ">=16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}