-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 2.41 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
{
"name": "eslint-interactive",
"description": "The CLI tool to run `eslint --fix` for each rule",
"version": "11.1.0",
"repository": "https://github.com/mizdra/eslint-interactive.git",
"author": "mizdra <pp.mizdra@gmail.com>",
"license": "MIT",
"private": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "run-s dev:prepare dev:run",
"dev:prepare": "pnpm run build",
"dev:run": "cd fixtures && ESLINT_USE_FLAT_CONFIG=false ../bin/eslint-interactive.js ./lib --rulesdir ./rules --ext .js,.jsx,.mjs",
"lint": "run-s -c lint:*",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"test": "vitest",
"e2e": "run-s e2e:prepare e2e:run",
"e2e:prepare": "pnpm run build --noCheck",
"e2e:run": "vitest -c vite.config.e2e.ts"
},
"prettier": "@mizdra/prettier-config-mizdra",
"packageManager": "pnpm@8.9.0",
"devDependencies": {
"@mizdra/eslint-config-mizdra": "2.1.0-alpha.0",
"@mizdra/inline-fixture-files": "^1.1.0",
"@mizdra/prettier-config-mizdra": "^2.0.0",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint": "^8.56.12",
"@types/estraverse": "^5.1.7",
"@types/estree": "^1.0.6",
"@types/node": "^22.7.4",
"@types/yargs": "^17.0.33",
"dedent": "^1.5.3",
"eslint": "^8.57.0",
"npm-run-all2": "^6.2.3",
"prettier": "3.3.3",
"stream-match": "^4.1.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"comlink": "^4.4.1",
"enquirer": "^2.4.1",
"estraverse": "^5.3.0",
"find-cache-dir": "^5.0.0",
"is-installed-globally": "^1.0.0",
"ora": "^8.1.0",
"table": "^6.8.2",
"terminal-link": "^3.0.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"eslint": "^8.45.0 || ^9.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"eslint-interactive": "bin/eslint-interactive.js"
},
"keywords": [
"eslint"
],
"files": [
"bin",
"src",
"!src/test-util",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"dist",
"static"
]
}