UNPKG

unplugin-oxlint

Version:

A universal bundler plugin for integrating the Oxlint linter into your project.

109 lines 2.5 kB
{ "name": "unplugin-oxlint", "type": "module", "version": "0.7.5", "description": "A universal bundler plugin for integrating the Oxlint linter into your project.", "author": "tmg0", "license": "MIT", "homepage": "https://github.com/tmg0/unplugin-oxlint#readme", "repository": { "type": "git", "url": "git+https://github.com/tmg0/unplugin-oxlint.git" }, "bugs": { "url": "https://github.com/tmg0/unplugin-oxlint/issues" }, "keywords": [ "eslint", "oxlint", "plugin", "rolldown", "rollup", "esbuild", "webpack", "vite" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./vite": { "types": "./dist/vite.d.ts", "import": "./dist/vite.js", "require": "./dist/vite.cjs" }, "./webpack": { "types": "./dist/webpack.d.ts", "import": "./dist/webpack.js", "require": "./dist/webpack.cjs" }, "./rollup": { "types": "./dist/rollup.d.ts", "import": "./dist/rollup.js", "require": "./dist/rollup.cjs" }, "./esbuild": { "types": "./dist/esbuild.d.ts", "import": "./dist/esbuild.js", "require": "./dist/esbuild.cjs" }, "./*": [ "./*", "./*.d.ts" ] }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./*" ] } }, "files": [ "dist", "scripts" ], "peerDependencies": { "oxlint": "^0.18.0" }, "dependencies": { "chokidar": "^4.0.3", "consola": "^3.4.2", "defu": "^6.1.4", "destr": "^2.0.5", "eslint": "^9.28.0", "execa": "^9.6.0", "fast-glob": "^3.3.3", "fs-extra": "^11.3.0", "local-pkg": "^1.1.1", "nypm": "^0.6.0", "ohash": "^2.0.11", "unplugin": "^2.3.5" }, "devDependencies": { "@antfu/eslint-config": "^4.14.1", "@types/fs-extra": "^11.0.4", "@types/node": "^22.15.31", "esbuild": "^0.25.5", "eslint-plugin-oxlint": "^0.18.1", "oxlint": "^0.18.1", "tsdown": "^0.12.7", "typescript": "^5.8.3", "vitest": "^3.2.3" }, "scripts": { "dev": "vitest dev", "build": "tsdown", "play:tsup": "cd playground/tsup && pnpm dev", "play:vite": "cd playground/vite && pnpm dev", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "test": "vitest" } }