-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "eslint-plugin-export-scope",
"version": "2.6.0",
"description": "Don't leak LOCAL utils, states, components into the global scope",
"type": "commonjs",
"license": "MIT",
"keywords": [
"scope",
"@scope",
"export",
"import",
"public",
"private",
"protected",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Alex Shleifman",
"repository": {
"type": "git",
"url": "git+https://github.com/A-Shleifman/eslint-plugin-export-scope.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"lint": "eslint .",
"clean": "rm -Rf ./dist/",
"dev": "tsc --watch",
"build": "npm run clean && tsc",
"open-debug-project": "TSS_DEBUG=5667 code test-project"
},
"dependencies": {
"@typescript-eslint/parser": "^8.23.0",
"@typescript-eslint/scope-manager": "^8.23.0",
"@typescript-eslint/utils": "^8.23.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/rule-tester": "^8.23.0",
"eslint": "^9.20.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">= 18.0.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <5.8.0"
}
}