eslint-plugin-roblox-ts
Version:
A collection of ESLint rules specifically targeted for roblox-ts.
92 lines • 2.58 kB
JSON
{
"name": "eslint-plugin-roblox-ts",
"version": "1.0.0",
"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)",
"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": {
"@typescript-eslint/type-utils": "8.36.0",
"@typescript-eslint/utils": "8.36.0"
},
"devDependencies": {
"@antfu/ni": "25.0.0",
"@isentinel/eslint-config": "1.2.6",
"@rbxts/compiler-types": "3.0.0-types.0",
"@rbxts/types": "1.0.861",
"@types/node": "24.0.13",
"@typescript-eslint/eslint-plugin": "8.36.0",
"@typescript-eslint/parser": "8.36.0",
"bumpp": "10.2.0",
"eslint": "9.31.0",
"eslint-8": "npm:eslint@^8.57.0",
"eslint-doc-generator": "2.2.2",
"eslint-plugin-eslint-plugin": "6.5.0",
"eslint-plugin-pnpm": "1.0.0",
"eslint-vitest-rule-tester": "2.2.0",
"jiti": "2.4.2",
"lint-staged": "16.1.2",
"publint": "0.3.12",
"simple-git-hooks": "2.13.0",
"ts-api-utils": "2.1.0",
"tsdown": "0.12.9",
"tsx": "4.20.3",
"typescript": "5.8.3",
"unplugin-unused": "0.5.1",
"vitest": "3.2.4"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"typescript": ">=5.2.0 <5.9.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.5.1"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsdown",
"create-rule": "tsx scripts/create-rule.ts",
"dev": "tsdown --stub",
"eslint-docs": "eslint-doc-generator",
"lint": "eslint",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"test:fixtures": "tsx scripts/test-fixtures.ts",
"typecheck": "tsc --noEmit"
}
}