-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 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
65
{
"name": "vite-plugin-auto-alias",
"type": "module",
"version": "2.0.0",
"description": "automatically generate alias based on path",
"author": "jiangweiye <jiangweiye@outlook.com> (https://github.com/jwyGithub)",
"license": "MIT",
"homepage": "https://github.com/jwyGithub/vite-plugin-auto-alias",
"keywords": [
"vite",
"vite-plugin",
"alias"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.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": {
"vite": "*"
},
"devDependencies": {
"@jiangweiye/eslint-config": "^0.1.15",
"@jiangweiye/prettier-config": "^0.0.18",
"@jiangweiye/tsconfig": "0.0.11",
"@swc/core": "^1.5.24",
"@types/node": "^20.12.13",
"bumpp": "^9.4.1",
"eslint": "^9.5.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"pnpm lint",
"pnpm prettier"
]
}
}