-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.34 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
{
"name": "livekun",
"version": "1.0.0-alpha.12",
"description": "A based OBS browser source plugins platform.",
"type": "module",
"private": true,
"author": {
"name": "hhui64",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hhui64/livekun.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build-github": "vue-tsc && vite build --base /livekun/",
"preview": "vite preview",
"lint": "eslint --cache --ext .ts,.tsx,.vue ./src",
"lint:fix": "eslint --fix --cache --ext .ts,.tsx,.vue ./src",
"format": "prettier --write --cache .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js?(x),json}": [
"prettier --write"
],
"*.{ts?(x),vue}": [
"eslint",
"prettier --write"
]
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"ant-design-vue": "^4.1.2",
"axios": "^1.6.7",
"chalk": "^5.3.0",
"emoji-regex": "^10.3.0",
"eventemitter3": "^5.0.1",
"gsap": "^3.12.5",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"uuid": "^9.0.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue3-colorpicker": "^2.3.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.24",
"@types/sharedworker": "^0.0.112",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.22.0",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.10.0",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-icons": "^0.18.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-progress": "^0.0.7",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.3"
}
}