-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.94 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
{
"name": "eslint-plugin-depend",
"version": "0.0.0-dev",
"description": "An ESLint plugin to suggest optimized dependencies, native alternatives and more",
"main": "lib/main.js",
"type": "module",
"files": [
"lib",
"!lib/test"
],
"scripts": {
"clean:build": "premove lib",
"build:js": "npm run clean:build && tsc",
"build": "npm run lint && npm run build:js",
"lint": "eslint src",
"format": "prettier --write src",
"test": "npm run build:js && vitest run",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-tooling/eslint-plugin-depend.git"
},
"keywords": [
"eslint",
"optimize",
"optimise",
"clutter",
"cleanup",
"package"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-tooling/eslint-plugin-depend/issues"
},
"homepage": "https://github.com/es-tooling/eslint-plugin-depend#readme",
"overrides": {
"vite": "npm:rolldown-vite@7.0.11"
},
"peerDependencies": {
"eslint": ">=8.40.0",
"oxlint": "^1.55.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"oxlint": {
"optional": true
}
},
"dependencies": {
"empathic": "^2.0.0",
"module-replacements": "^2.10.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@humanwhocodes/momoa": "^3.3.9",
"@types/estree": "^1.0.8",
"@types/node": "^24.4.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/typescript-estree": "^8.43.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^10.0.1",
"eslint-plugin-eslint-plugin": "^7.3.1",
"eslint-vitest-rule-tester": "^3.1.0",
"jsonc-eslint-parser": "^2.4.0",
"premove": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "5.9.2",
"typescript-eslint": "^8.56.1",
"vitest": "3.2.4"
}
}