120 lines
2.7 KiB
JSON
120 lines
2.7 KiB
JSON
{
|
|
"name": "unplugin-combine",
|
|
"version": "1.2.1",
|
|
"description": "Unified plugin that combines other plugins into one plugin.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/sxzz/unplugin-combine#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/sxzz/unplugin-combine/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sxzz/unplugin-combine.git"
|
|
},
|
|
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
|
|
"funding": "https://github.com/sponsors/sxzz",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./vite": {
|
|
"require": "./dist/vite.cjs",
|
|
"import": "./dist/vite.js"
|
|
},
|
|
"./webpack": {
|
|
"require": "./dist/webpack.cjs",
|
|
"import": "./dist/webpack.js"
|
|
},
|
|
"./rollup": {
|
|
"require": "./dist/rollup.cjs",
|
|
"import": "./dist/rollup.js"
|
|
},
|
|
"./esbuild": {
|
|
"require": "./dist/esbuild.cjs",
|
|
"import": "./dist/esbuild.js"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist/*",
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"peerDependencies": {
|
|
"@rspack/core": "*",
|
|
"esbuild": ">=0.13",
|
|
"rolldown": "*",
|
|
"rollup": "^3.2.0 || ^4.0.0",
|
|
"unplugin": "^1.0.0 || ^2.0.0",
|
|
"vite": "^2.3.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-0",
|
|
"webpack": "4 || 5"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@rspack/core": {
|
|
"optional": true
|
|
},
|
|
"esbuild": {
|
|
"optional": true
|
|
},
|
|
"rolldown": {
|
|
"optional": true
|
|
},
|
|
"rollup": {
|
|
"optional": true
|
|
},
|
|
"unplugin": {
|
|
"optional": true
|
|
},
|
|
"vite": {
|
|
"optional": true
|
|
},
|
|
"webpack": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/utils": "^9.1.0",
|
|
"@rspack/core": "^1.2.7",
|
|
"@sxzz/eslint-config": "^5.2.0",
|
|
"@sxzz/prettier-config": "^2.2.0",
|
|
"@types/node": "^22.13.9",
|
|
"bumpp": "^10.0.3",
|
|
"esbuild": "^0.25.0",
|
|
"eslint": "^9.21.0",
|
|
"fast-glob": "^3.3.3",
|
|
"prettier": "^3.5.3",
|
|
"rolldown": "^1.0.0-beta.3",
|
|
"rollup": "^4.34.9",
|
|
"tsdown": "^0.6.3",
|
|
"typescript": "^5.8.2",
|
|
"vite": "^6.2.0",
|
|
"vitest": "^3.0.7",
|
|
"webpack": "^5.98.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.14.0"
|
|
},
|
|
"prettier": "@sxzz/prettier-config",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"build": "tsdown",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"release": "bumpp && pnpm publish"
|
|
}
|
|
} |