-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "@moomfe/eslint-config",
"version": "3.4.0",
"packageManager": "pnpm@9.12.3",
"description": "MoomFE ESLint config presets",
"author": "Wei Zhang <https://github.com/Zhang-Wei-666>",
"license": "MIT",
"homepage": "https://github.com/MoomFE/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MoomFE/eslint-config.git"
},
"bugs": {
"url": "https://github.com/MoomFE/eslint-config/issues"
},
"keywords": [
"MoomFE",
"ESLint config presets"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm install && tsx scripts/build.ts",
"lint": "pnpm install && eslint .",
"lint:fix": "pnpm install && eslint . --fix",
"inspector:dev": "pnpm install && npx @eslint/config-inspector@latest",
"up": "npx taze latest -r -w -i",
"release": "npx bumpp -r --no-tag --no-push"
},
"dependencies": {
"@antfu/eslint-config": "^3.7.3",
"eslint": "^9.11.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.10",
"pnpm": "^9.12.3",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"vite": "^5.4.10",
"vue": "^3.5.12"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --cache --fix"
}
}