complugin
Version:
Unified plugin system for bundle tools.(e.g. rollback, vite, webpack, esbuild)
105 lines (104 loc) • 2.74 kB
JSON
{
"name": "complugin",
"version": "1.1.4",
"description": "Unified plugin system for bundle tools.(e.g. rollback, vite, webpack, esbuild)",
"author": "xxXyh1908",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"depcheck": "depcheck",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag --all -x 'npx conventional-changelog -p angular -i CHANGELOG.md -s' && npm publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"complugin",
"bundler-plugin",
"plugin",
"rollup",
"esbuild",
"vite",
"webpack"
],
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"convert-source-map": "^1.8.0",
"fs-extra": "^10.1.0",
"magic-string": "^0.26.2",
"merge-source-map": "^1.1.0",
"mime-types": "^2.1.35",
"source-map": "^0.7.4",
"sourcemap-codec": "^1.4.8",
"webpack-virtual-modules": "^0.4.4"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/convert-source-map": "^1.5.2",
"@types/fs-extra": "^9.0.13",
"@types/html-escaper": "^3.0.0",
"@types/lodash-es": "^4.17.6",
"@types/mime-types": "^2.1.1",
"@types/node": ">12.2.0",
"@vitest/ui": "^0.21.0",
"acorn": "^8.8.0",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"esbuild": "^0.14.53",
"get-port": "^6.1.2",
"html-escaper": "^3.0.3",
"lodash-es": "^4.17.21",
"memfs": "^3.4.7",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"unplugin": "^0.8.1",
"vite": "^2.9.14",
"vitest": "^0.21.0",
"webpack": "^5.73.0",
"webpack4": "npm:webpack@4",
"webpack5": "npm:webpack@5"
},
"repository": {
"type": "git",
"url": "https://gitee.com/xxXyh1908/complugin"
},
"bugs": {
"url": "https://gitee.com/xxXyh1908/complugin/issues"
},
"homepage": "https://gitee.com/xxXyh1908/complugin/#readme",
"peerDependencies": {
"esbuild": "^0.14.44",
"rollup": "^2.50.0",
"vite": "^2.3.0 || ^3.0.0-0",
"webpack": "4 || 5"
},
"peerDependenciesMeta": {
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
}
}