UNPKG

eslint-parser-plain

Version:

Parse various types of files with ESLint.

68 lines 1.59 kB
{ "name": "eslint-parser-plain", "version": "0.1.1", "packageManager": "pnpm@8.15.6", "author": "Ray <i@mk1.io> (@so1ve)", "description": "Parse various types of files with ESLint.", "keywords": [ "eslint", "eslint-parser" ], "homepage": "https://github.com/so1ve/eslint-parser-plain#readme", "repository": { "type": "git", "url": "git+https://github.com/so1ve/eslint-parser-plain.git" }, "bugs": { "url": "https://github.com/so1ve/eslint-parser-plain/issues" }, "license": "MIT", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "publishConfig": { "access": "public" }, "devDependencies": { "@antfu/ni": "^0.21.3", "@so1ve/eslint-config": "^0.110.0", "@types/eslint": "^8.40.0", "@types/node": "^18.16.3", "bumpp": "^9.1.0", "eslint": "^8.39.0", "tsx": "^3.12.7", "typescript": "^5.0.4", "unbuild": "^1.2.1", "vite": "^4.3.4", "vitest": "^0.32.0" }, "scripts": { "build": "unbuild", "lint": "eslint .", "lint:fix": "eslint . --fix", "release": "bumpp --commit --push --tag && pnpm publish", "start": "tsx src/index.ts", "stub": "unbuild --stub", "test": "vitest", "typecheck": "tsc --noEmit" } }