-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@estudio-cactus/eslint-config",
"version": "0.0.0-development",
"description": "A TypeScript, ESLint and Prettier configuration package focused on Estudio Cactus's projects",
"main": "index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./nextjs": {
"import": "./lib/nextjs.js",
"require": "./lib/nextjs.js",
"types": "./lib/nextjs.d.ts"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier . --check",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=18.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estudiocactus/eslint-config.git"
},
"author": "Alejandro Suero Mejías <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estudiocactus/eslint-config/issues"
},
"homepage": "https://github.com/estudiocactus/eslint-config#readme",
"keywords": [
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"style",
"style checker",
"style linter",
"verify",
"TypeScript"
],
"dependencies": {
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-config-prettier": "^9.0.0",
"@next/eslint-plugin-next": "13.4.3",
"typescript-eslint": "^7.0.1"
},
"peerDependencies": {
"eslint": "^8.0.1",
"typescript": "*"
},
"devDependencies": {
"@types/eslint": "^8.40.0",
"semantic-release": "22.0.5",
"@types/node": "20.12.7",
"eslint": "^8.0.1",
"prettier": "^3.3.3",
"tsconfigs": "^4.0.2",
"typescript": "5.5.4",
"typescript-eslint_bottom": "npm:[email protected]"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}