-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "eslint-config-comparitiko",
"version": "0.1.0",
"description": "Comparitiko's ESLint and Prettier Config",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./typescript": "./typescript.js"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix"
},
"author": "Comparitiko",
"repository": {
"type": "git",
"url": "git+https://github.com/Comparitiko/eslint-config-comparitiko.git"
},
"keywords": [
"javascript",
"typescript",
"ecmascript",
"eslint",
"eslintconfig",
"lint",
"config",
"prettier",
"comparitiko"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Comparitiko/eslint-config-comparitiko/issues"
},
"homepage": "https://github.com/Comparitiko/eslint-config-comparitiko#readme",
"dependencies": {
"@eslint/js": "^9.9.1",
"@typescript-eslint/parser": "^8.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.2.0"
},
"peerDependencies": {
"eslint": "^9.9.1"
}
}