-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.98 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@skarab/eslint-config",
"description": "My ESLint config",
"version": "0.0.0-development",
"license": "MIT",
"author": {
"name": "skarab42",
"email": "[email protected]"
},
"funding": "https://github.com/sponsors/skarab42",
"homepage": "https://github.com/skarab42/eslint-config",
"repository": {
"type": "git",
"url": "https://github.com/skarab42/eslint-config.git"
},
"bugs": "https://github.com/skarab42/eslint-config/issues",
"type": "commonjs",
"main": "./output/index.js",
"types": "./output/index.d.ts",
"exports": {
".": "./output/index.js",
"./configs": "./output/configs/index.js",
"./configs/*": "./output/configs/*.js",
"./configs/*.js": "./output/configs/*.js",
"./overrides": "./output/overrides/index.js",
"./overrides/*": "./output/overrides/*.js",
"./overrides/*.js": "./output/overrides/*.js",
"./recommended": "./output/configs/recommended.js",
"./recommended-commonjs": "./output/configs/recommended-commonjs.js",
"./package.json": "./package.json"
},
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"output"
],
"keywords": [
"eslint",
"config",
"typescript"
],
"scripts": {
"prepare": "npx simple-git-hooks",
"lint": "eslint . --max-warnings=0",
"lint:fix": "pnpm lint --fix",
"format": "prettier **/* --ignore-unknown",
"format:write": "pnpm format --write",
"build": "rimraf ./output && tsc -p tsconfig.build.json",
"semantic-release": "semantic-release --branches main"
},
"peerDependencies": {
"eslint": ">=8",
"typescript": ">=5"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-require-sort": "^1.3.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-yml": "^1.11.0"
},
"devDependencies": {
"@skarab/eslint-staged": "^1.0.0",
"@skarab/prettier-config": "^1.2.2",
"@skarab/typescript-config": "^3.1.0",
"@types/eslint": "^8.56.0",
"@types/node": "^20.10.6",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"prettier": "@skarab/prettier-config",
"lint-staged": {
"*": [
"pnpm eslint-staged --fix --max-warnings=0",
"pnpm prettier --write --ignore-unknown"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
}
}