-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
47
48
49
50
51
52
53
{
"name": "@coderspirit/eslint-config",
"version": "2.0.0",
"description": "Super-Strict ESLint configuration",
"private": false,
"main": "eslint-config.cjs",
"exports": {
".": {
"require": "./eslint-config.cjs"
},
"./prettier": {
"import": "./.prettierrc.mjs"
},
"./tsconfig": "./tsconfig.json"
},
"author": "Andres Correa Casablanca <castarco@coderspirit.xyz>",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.44.9",
"@types/node": "^20.10.4",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^49.0.0"
},
"files": [
".editorconfig",
".prettierrc.mjs",
"eslint-config.cjs",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Coder-Spirit/eslint-config.git"
},
"bugs": {
"url": "https://github.com/Coder-Spirit/eslint-config/issues"
},
"homepage": "https://github.com/Coder-Spirit/eslint-config#readme"
}