UNPKG

rollup-plugin-install

Version:
58 lines (57 loc) 1.47 kB
{ "name": "rollup-plugin-install", "version": "0.0.5", "description": "auto install dependence while vite/rollup build", "main": "dist/index.js", "scripts": { "dev": "tsc -w -p . --incremental --skipLibCheck", "build": "rm -rf dist && tsc -p . --skipLibCheck", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", "prepublishOnly": "yarn build && yarn changelog", "postpublish": "git add CHANGELOG.md && git commit -m 'chore: changelog [ci skip]'" }, "files": [ "dist" ], "keywords": [ "vite", "rollup", "plugin", "install", "auto" ], "author": "SmileSmith", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/SmileSmith/rollup-plugin-install" }, "bugs": { "url": "https://github.com/SmileSmith/rollup-plugin-install/issues" }, "homepage": "https://github.com/SmileSmith/rollup-plugin-install/tree/master/#readme", "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.js": [ "prettier --write" ], "*.ts": [ "prettier --parser=typescript --write" ] }, "dependencies": { "@rollup/pluginutils": "^4.1.0", "chalk": "^4.1.0", "rollup": "^2.35.1" }, "devDependencies": { "@types/node": "^14.0.14", "conventional-changelog-cli": "^2.0.34", "lint-staged": "^10.2.11", "prettier": "^2.0.5", "typescript": "^4.1.2", "yorkie": "^2.0.0" } }