-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "vite-plugin-replace-lodash",
"version": "1.0.3",
"description": "Replacing the import of lodash with lodash-es is more beneficial to tree-shaking",
"keywords": ["vite-plugin", "lodash"],
"author": "mingtianyihou33 <[email protected]>",
"repository": {
"url": "git+https://github.com/mingtianyihou33/vite-plugin-replace-lodash.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"version": "node scripts/version.js && npm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"build": "unbuild && node scripts/genPkgInfo.js",
"prettier": "prettier --write .",
"prepare": "husky",
"test": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"conventional-changelog-cli": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.5"
},
"peerDependencies": {
"vite": "^5.4.11"
},
"lint-staged": {
"*.{js?(x),ts?(x),vue}": [
"prettier --write"
]
}
}