-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.69 KB
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
{
"name": "vue-cli-plugin-inject-alias",
"version": "1.0.5",
"description": "automatically generate alias based on path",
"author": "jiangweiye <jiangweiye@outlook.com> (https://github.com/jwyGithub)",
"license": "MIT",
"homepage": "https://github.com/jwyGithub/vue-cli-plugin-inject-alias",
"keywords": [
"vue",
"vue-cli",
"vue-cli-plugin",
"vue-cli-plugin-alias",
"alias"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "pnpx prettier --write .",
"lint-staged": "lint-staged",
"release": "standard-version"
},
"peerDependencies": {
"@vue/cli-service": "*"
},
"devDependencies": {
"@jiangweiye/eslint-config": "^0.1.12",
"@jiangweiye/prettier-config": "^0.0.18",
"@jiangweiye/tsconfig": "0.0.11",
"@swc/core": "^1.5.7",
"@types/node": "^20.12.12",
"@vue/cli-service": "~5.0.8",
"bumpp": "^9.4.1",
"eslint": "^9.5.0",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"pnpm lint",
"pnpm prettier"
]
}
}