UNPKG

eslint-plugin-roblox-ts

Version:

A collection of ESLint rules specifically targeted for roblox-ts.

101 lines 2.91 kB
{ "name": "eslint-plugin-roblox-ts", "version": "1.3.1", "description": "A collection of ESLint rules specifically targeted for roblox-ts.", "keywords": [ "roblox", "roblox-ts", "eslint-plugin", "rbxts" ], "homepage": "https://github.com/roblox-ts/eslint-plugin-roblox-ts#readme", "bugs": "https://github.com/roblox-ts/eslint-plugin-roblox-ts/issues", "repository": { "type": "git", "url": "git+https://github.com/roblox-ts/eslint-plugin-roblox-ts.git" }, "license": "MIT", "author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)", "contributors": [ "osyrisrblx (https://github.com/osyrisrblx)" ], "sideEffects": false, "type": "module", "exports": { ".": "./dist/index.mjs", "./package.json": "./package.json" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist" ], "simple-git-hooks": { "pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "resolutions": { "eslint-plugin-roblox-ts": "workspace:*" }, "dependencies": { "@roblox-ts/luau-ast": "2.0.1", "@typescript-eslint/type-utils": "8.46.4", "@typescript-eslint/utils": "8.46.4" }, "devDependencies": { "@antfu/ni": "27.0.1", "@antfu/utils": "9.3.0", "@isentinel/eslint-config": "4.2.2", "@isentinel/tsconfig": "1.1.0", "@rbxts/compiler-types": "3.0.0-types.0", "@rbxts/types": "1.0.890", "@types/node": "24.10.1", "@typescript-eslint/eslint-plugin": "8.46.4", "@typescript-eslint/parser": "8.46.4", "bumpp": "10.3.1", "eslint": "9.39.1", "eslint-8": "npm:eslint@^8.57.0", "eslint-doc-generator": "2.3.0", "eslint-plugin-eslint-plugin": "7.2.0", "eslint-plugin-n": "17.23.1", "eslint-plugin-pnpm": "1.3.0", "eslint-vitest-rule-tester": "3.0.0", "jiti": "2.6.1", "lint-staged": "16.2.6", "publint": "0.3.15", "simple-git-hooks": "2.13.1", "ts-api-utils": "2.1.0", "tsdown": "0.16.4", "tsx": "4.20.6", "typescript": "5.9.3", "unplugin-unused": "0.5.6", "vitest": "4.0.8" }, "peerDependencies": { "@typescript-eslint/parser": ">=6.0.0", "eslint": ">=8.0.0", "typescript": ">=5.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=22.5.1" }, "publishConfig": { "provenance": true }, "scripts": { "build": "nr generate:types && tsdown --clean --dts", "create-rule": "tsx scripts/create-rule.ts", "dev": "tsdown --stub", "eslint-docs": "eslint-doc-generator", "generate:types": "tsx scripts/generate-types.ts", "lint": "eslint", "release": "bumpp", "start": "tsx src/index.ts", "test": "vitest", "test:fixtures": "tsx scripts/test-fixtures.ts", "typecheck": "tsc --noEmit" } }