eslint-plugin-export-scope
Version:
Don't leak LOCAL utils, states, components into the global scope
67 lines (66 loc) • 1.65 kB
JSON
{
"name": "eslint-plugin-export-scope",
"version": "3.0.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.39.1",
"@typescript-eslint/scope-manager": "^8.39.1",
"@typescript-eslint/utils": "^8.39.1"
},
"devDependencies": {
"eslint8": "npm:eslint@^8.57.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/rule-tester": "^8.39.1",
"eslint": "^9.33.0",
"eslint-plugin-eslint-plugin": "^6.5.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">= 18.0.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.9 <6"
}
}