-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "@strv/eslint-config-typescript",
"description": "STRV's ESLint config for TypeScript projects",
"version": "6.0.0",
"author": "Robert Rossmann <rr.rossmann@me.com>",
"bugs": {
"url": "https://github.com/strvcom/code-quality-tools/issues"
},
"contributors": [
"Pavel Prichodko <prichodko.p@gmail.com>",
"Danny Kijkov <daniel.kijkov@strv.com>"
],
"dependencies": {
"@strv/eslint-config-base": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-import-resolver-typescript": "^4.3.5"
},
"engines": {
"node": ">=22"
},
"type": "module",
"exports": {
".": "./index.mjs",
"./optional": "./optional.mjs",
"./style": "./style.mjs",
"./react": "./react.mjs"
},
"keywords": [
"config",
"eslint",
"typescript",
"strv"
],
"license": "BSD-3-Clause",
"peerDependencies": {
"eslint": "^9"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/strvcom/code-quality-tools.git"
}
}