-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "vue-wplayer",
"private": false,
"version": "0.8.0",
"license": "MIT",
"author": "wzm",
"description": "基于Vue3的弹幕视频播放器",
"keywords": [
"vue",
"player",
"danmaku",
"video"
],
"repository": {
"url": "git+https://github.com/wangzmgit/vue-wplayer.git",
"type": "git"
},
"files": [
"dist"
],
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/style.css": "./dist/style.css"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.7.18",
"@vitejs/plugin-vue": "^3.1.0",
"@vuepress/plugin-register-components": "^2.0.0-beta.51",
"fast-glob": "^3.2.12",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-css-injected-by-js": "^3.0.0",
"vite-plugin-dts": "^1.5.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue": "^3.2.39",
"vue-tsc": "^0.40.4",
"vuepress": "^2.0.0-beta.51"
}
}