generated from wopjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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": "@wopjs/eslint-config",
"version": "0.1.7",
"description": "Wopjs eslint config that aims to enforce code style that is consistent and diff-friendly, easy to review.",
"repository": "wopjs/eslint-config",
"main": "./index.js",
"types": "./index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"index.js",
"index.d.ts",
"eslint.config.mjs"
],
"scripts": {
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write ."
},
"keywords": [
"eslint",
"eslint-config",
"typescript",
"sort"
],
"maintainers": [
{
"name": "CRIMX",
"email": "[email protected]",
"url": "https://github.com/crimx/"
},
{
"name": "hyrious",
"email": "[email protected]",
"url": "https://github.com/hyrious/"
}
],
"license": "MIT",
"peerDependencies": {
"eslint": "9.x"
},
"dependencies": {
"@eslint/js": "^9.19.0",
"@eslint/json": "^0.10.0",
"eslint-config-flat-gitignore": "^1.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-perfectionist": "^4.7.0",
"typescript-eslint": "^8.21.0"
},
"devDependencies": {
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}