-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.22 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
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
{
"name": "@preco21/eslint-config",
"version": "2.2.2",
"description": "ESLint shareable config for @preco21",
"author": "Preco Plusb <plusb21@gmail.com>",
"type": "module",
"main": "index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"test": "pnpm run '/^(typecheck|lint|check-eslint-rules)$/'",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "tsup --format esm,cjs --watch & eslint-flat-config-viewer",
"watch": "tsup --format esm,cjs --watch",
"clean": "rm -rf dist/",
"check-eslint-rules": "pnpm run '/^check-eslint-rules:.*/'",
"check-eslint-rules:index": "eslint-find-rules --unused --deprecated index.js",
"check-eslint-rules:typescript": "eslint-find-rules --unused --deprecated --no-core rules/typescript.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/"
],
"keywords": [
"code",
"style",
"guide",
"eslint",
"config",
"preco21",
"¯\\_(ツ)_/¯"
],
"packageManager": "pnpm@8.12.1",
"license": "MIT",
"homepage": "https://github.com/preco21/eslint-config#readme",
"repository": "preco21/eslint-config",
"bugs": "https://github.com/preco21/eslint-config/issues",
"dependencies": {
"@stylistic/eslint-plugin": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"confusing-browser-globals": "^1.0.10",
"globals": "^16.3.0"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.52.3",
"@eslint/config-inspector": "^1.1.0",
"@preco21/tsconfig": "7.1.0",
"eslint": "^9.31.0",
"eslint-find-rules": "^5.0.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"tsdown": "^0.12.9",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@eslint-react/eslint-plugin": "^1.52.3",
"eslint": "^9.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20"
},
"peerDependenciesMeta": {
"@eslint-react/eslint-plugin": {
"optional": true
}
}
}