-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "@wunderwerk/eslint-config",
"version": "2.0.3",
"description": "Shared eslint config for wunderwerk projects.",
"type": "module",
"exports": {
"./base": {
"import": "./base.js"
},
"./react": {
"import": "./react.js"
},
"./typescript": {
"import": "./typescript.js"
}
},
"scripts": {
"format": "prettier --check --log-level warn *.js",
"format:fix": "prettier --write --log-level warn *.js"
},
"keywords": [
"eslint"
],
"author": "Christian Foidl <christian@wunderwerk.io> (https://wunderwerk.io)",
"license": "MIT",
"peerDependencies": {
"eslint": ">= 9",
"eslint-plugin-jsdoc": ">= 48"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^7.14.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2"
},
"dependencies": {
"@eslint/compat": "^1.1.0",
"eslint-config-prettier": "^9.1.0"
},
"devDependencies": {
"prettier": "^3.3.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"README.md",
"LICENSE",
"base.js",
"index.js",
"react.js",
"typescript.js"
]
}