eslint-plugin-export-scope
Version:
Don't leak LOCAL utils, states, components into the global scope
64 lines (63 loc) • 1.58 kB
JSON
{
"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": {
"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": "^8.23.0",
"@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"
},
"engines": {
"node": ">= 18.0.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <5.8.0"
}
}