-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "@dxhuii/eslint-config",
"type": "module",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "Dxhuii's ESLint config",
"author": "Dxhuii <[email protected]> (https://github.com/dxhuii)",
"license": "MIT",
"homepage": "https://github.com/dxhuii/eslint-config",
"keywords": [
"eslint-config"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean --dts",
"stub": "tsup src/index.ts --format esm,cjs --clean",
"lint": "pnpm run stub && eslint .",
"prepublishOnly": "pnpm run build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"@antfu/eslint-config": ">=2.0.0",
"eslint": ">=8.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.1",
"@dxhuii/eslint-config": "workspace:*",
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.12",
"bumpp": "^9.4.1",
"eslint": "^9.3.0",
"lint-staged": "^15.2.4",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}