-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"private": true,
"name": "save-html",
"repository": "git@github.com:BlackGlory/save-html.git",
"author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src",
"prepublishOnly": "run-s clean build",
"clean": "rimraf dist",
"build": "webpack --config webpack.prod.js",
"dev": "webpack --watch --config webpack.dev.js"
},
"husky": {
"hooks": {
"pre-commit": "run-s clean lint build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/chrome": "^0.0.254",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@blackglory/prelude": "^0.3.4",
"js-base64": "^3.7.5"
}
}