unplugin-oxc
Version:
Oxc integration for unplugin.
94 lines • 2.23 kB
JSON
{
"name": "unplugin-oxc",
"type": "module",
"version": "0.6.1",
"description": "Oxc integration for unplugin.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-oxc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-oxc.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-oxc/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rspack",
"rollup",
"rolldown",
"esbuild",
"farm"
],
"exports": {
".": "./dist/index.mjs",
"./api": "./dist/api.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./farm": "./dist/farm.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./unloader": "./dist/unloader.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"peerDependencies": {
"unloader": "*"
},
"peerDependenciesMeta": {
"unloader": {
"optional": true
}
},
"dependencies": {
"oxc-minify": ">=0.127.0",
"oxc-resolver": "^11.19.1",
"oxc-transform": ">=0.127.0",
"unplugin": "^3.0.0"
},
"inlinedDependencies": {
"@antfu/utils": "9.3.0"
},
"devDependencies": {
"@antfu/utils": "^9.3.0",
"@sxzz/eslint-config": "^7.8.4",
"@sxzz/prettier-config": "^2.3.1",
"@sxzz/test-utils": "^0.5.16",
"@types/node": "^25.6.0",
"bumpp": "^11.0.1",
"eslint": "^10.2.1",
"prettier": "^3.8.3",
"rollup": "^4.60.2",
"tinyexec": "^1.1.1",
"tsdown": "^0.21.10",
"tsdown-preset-sxzz": "^0.5.0",
"typescript": "^6.0.3",
"unloader": "^0.9.0",
"vite": "^8.0.9",
"vitest": "^4.1.5"
},
"prettier": "@sxzz/prettier-config",
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp"
}
}