This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
125 lines (125 loc) · 3.96 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "shirakami-haruka-button",
"version": "1.13.1",
"private": true,
"author": "CaoMeiYouRen",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"postbuild": "rimraf ./dist/voices.zip && rimraf ./dist/voices",
"lint": "cross-env NODE_ENV=production eslint *.js src --fix --ext .js,.ts,.vue && npm run lint:css",
"lint:css": "cross-env NODE_ENV=production stylelint src/**/*.{vue,html,css,scss,sass} --syntax scss --custom-syntax postcss-html --fix",
"commit": "git add . && git cz",
"changelog": "conventional-changelog -p cmyr-config -i CHANGELOG.md -s -r 0",
"release": "semantic-release",
"deploy": "npm run build && node ./deploy",
"analyzer": "cross-env MODE=analyzer vue-cli-service build",
"postinstall": "patch-package"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaoMeiYouRen/shirakami-haruka-button.git"
},
"bugs": {
"url": "https://github.com/CaoMeiYouRen/shirakami-haruka-button/issues"
},
"homepage": "https://github.com/CaoMeiYouRen/shirakami-haruka-button#readme",
"dependencies": {
"@mdi/font": "^7.2.96",
"@vue-composable/axios": "^1.0.0-beta.24",
"@vue/composition-api": "^1.6.3",
"animate.css": "^4.1.1",
"axios": "^1.4.0",
"core-js": "^3.30.2",
"dayjs": "^1.11.8",
"highlight.js": "^11.8.0",
"lodash": "^4.17.20",
"material-design-icons-iconfont": "^6.7.0",
"normalize.css": "^8.0.1",
"query-string": "^8.1.0",
"rss-parser": "^3.13.0",
"vue": "^2.7.14",
"vue-composable": "^1.0.0-beta.23",
"vue-i18n": "^8.28.2",
"vue-router": "^3.6.5",
"vuetify": "^2.6.15",
"vuex": "^3.6.2",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.14.195",
"@types/markdown-it": "^12.2.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^4.5.19",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^3.0.0",
"conventional-changelog-cmyr-config": "^2.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-cmyr": "^1.1.28",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^7.20.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-loader": "^1.3.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"markdown-it": "^13.0.1",
"markdown-it-loader": "^0.7.0",
"patch-package": "^7.0.0",
"sass": "^1.63.2",
"sass-loader": "^10.1.1",
"scp2": "^0.5.0",
"semantic-release": "^21.0.2",
"stylelint": "^13.9.0",
"stylelint-config-cmyr": "^0.2.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^3.0.1",
"typescript": "^5.1.3",
"validate-commit-msg": "^2.14.0",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-template-compiler": "^2.7.14",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cdn-plugin": "^3.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "validate-commit-msg"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"cross-env NODE_ENV=production vue-cli-service lint",
"git add"
]
},
"changelog": {
"language": "zh",
"authorName": false
}
}