-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "vite-plugin-i18n-autoimport",
"version": "1.2.0",
"description": "",
"main": "./dist/index.js",
"bin": {},
"scripts": {
"build": "rimraf -rf dist && tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "release-pkg",
"test": "jest"
},
"keywords": [
"node",
"vite",
"vite-plugin",
"vue-i18n"
],
"author": "pengboUESTC",
"homepage": "https://github.com/PengBoUESTC/vite-plugin-i18n-autoimport",
"repository": {
"type": "git",
"url": "git+https://github.com/PengBoUESTC/vite-plugin-i18n-autoimport"
},
"license": "ISC",
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"magic-string": "^0.30.1",
"release-pkg": "^1.1.2"
},
"peerDependencies": {
"vite": "^4.4.3",
"vue-i18n": "9"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.7.1",
"rimraf": "^5.0.1",
"rollup": "^3.3.0",
"rollup-plugin-clear": "^2.0.7",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.3",
"vite": "^4.4.3"
},
"lint-staged": {
"lib/**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"dist/**/*.{ts,d.ts}": [
"eslint --fix",
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"engines": {
"node": ">=16"
}
}