-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.74 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
{
"name": "@e18e/eslint-plugin",
"version": "0.0.1",
"description": "The official e18e ESLint plugin for modernizing code and improving performance.",
"keywords": [
"eslint",
"e18e",
"performance",
"bloat",
"perf"
],
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts"
],
"homepage": "https://github.com/e18e/eslint-plugin#readme",
"bugs": {
"url": "https://github.com/e18e/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/eslint-plugin.git"
},
"license": "MIT",
"author": "James Garbutt (https://github.com/43081j)",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "vitest run",
"format": "prettier --write src",
"lint": "npm run lint:js && npm run lint:format",
"lint:js": "eslint src",
"lint:format": "prettier --check src"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/rule-tester": "^8.59.0",
"@typescript-eslint/typescript-estree": "^8.59.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-plugin-eslint-plugin": "^7.3.2",
"jsonc-eslint-parser": "^3.1.0",
"oxlint": "^1.61.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.0.14"
},
"peerDependencies": {
"eslint": "^9.0.0 || ^10.0.0",
"oxlint": "^1.61.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"oxlint": {
"optional": true
}
},
"dependencies": {
"empathic": "^2.0.0",
"module-replacements": "^3.0.0-beta.7",
"semver": "^7.7.4"
}
}