-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "webpack-multiple-entry",
"version": "2.3.8",
"repository": "https://github.com/mulingyuer/Typecho_Theme_JJ.git",
"author": "mulingyuer <1321968423@qq.com>",
"license": "bsd 3.0",
"main": "index.js",
"scripts": {
"dev": "webpack --config=./webpack/webpack.dev.ts",
"build": "webpack --config=./webpack/webpack.prod.ts && bumpp --no-commit --no-tag --no-push && ts-node buildCommand/updateVersion.ts",
"analyze": "webpack --config=./webpack/webpack.prod.ts --analyze",
"git:commit-all": "git add . && git cz",
"git:commit-index": "git cz",
"build-zip": "ts-node buildCommand/zip.ts",
"init-husky": "npx husky init",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.6",
"@commitlint/cli": "^19.4.1",
"@types/archiver": "^6.0.2",
"@types/crypto-js": "^4.2.2",
"@types/glob": "^8.1.0",
"@types/node": "^22.5.4",
"@types/qrcode": "^1.5.5",
"@types/toastify-js": "^1.12.3",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"bumpp": "^9.5.2",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"compression-webpack-plugin": "^11.1.0",
"core-js": "3.38.1",
"css-loader": "^7.1.2",
"cz-customizable": "^7.2.1",
"glob": "^11.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.5",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpackbar": "^6.0.1"
},
"dependencies": {
"@docsearch/css": "3.6.1",
"@docsearch/js": "3.6.1",
"@floating-ui/dom": "^1.6.10",
"axios": "^1.6.8",
"crypto-js": "^4.2.0",
"highlight.js": "^11.10.0",
"mitt": "^3.0.1",
"pinia": "^2.2.2",
"qrcode": "^1.5.4",
"resize-observer-polyfill": "^1.5.1",
"simplebar": "^6.2.7",
"toastify-js": "^1.12.0",
"vue": "^3.5.3"
},
"engines": {
"node": ">=v18.16.0",
"pnpm": ">=8.6.2"
},
"engineStrict": true,
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}