unplugin/package.json
三咲智子 Kevin Deng 466f4d5be7
chore: release v2.3.2
2025-04-12 19:06:02 +08:00

93 lines
2.4 KiB
JSON

{
"name": "unplugin",
"type": "module",
"version": "2.3.2",
"packageManager": "pnpm@10.8.0",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unplugin.git"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dist/webpack/loaders/*": "./dist/webpack/loaders/*.cjs",
"./dist/rspack/loaders/*": "./dist/rspack/loaders/*.cjs"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch src",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"typecheck": "tsc --noEmit",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:gen-files": "pnpm -C docs run gen-files",
"prepublishOnly": "nr build",
"release": "bumpp --all && npm publish",
"test": "nr test:build && vitest run --pool=forks",
"test:build": "jiti scripts/buildFixtures.ts"
},
"dependencies": {
"acorn": "^8.14.1",
"picomatch": "^4.0.2",
"webpack-virtual-modules": "^0.6.2"
},
"devDependencies": {
"@ampproject/remapping": "^2.3.0",
"@antfu/eslint-config": "^4.12.0",
"@antfu/ni": "^24.3.0",
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.7.2",
"@rspack/cli": "^1.3.4",
"@rspack/core": "^1.3.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.14.0",
"@types/picomatch": "^4.0.0",
"ansis": "^3.17.0",
"bumpp": "^10.1.0",
"esbuild": "^0.25.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.24.0",
"eslint-plugin-format": "^1.0.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"jiti": "^2.4.2",
"lint-staged": "^15.5.1",
"magic-string": "^0.30.17",
"rolldown": "^1.0.0-beta.7",
"rollup": "^4.39.0",
"simple-git-hooks": "^2.12.1",
"tsdown": "^0.6.10",
"typescript": "~5.8.3",
"unloader": "^0.4.3",
"unplugin": "workspace:*",
"vite": "^6.2.6",
"vitest": "^3.1.1",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"resolutions": {
"esbuild": "^0.25.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}