UNPKG

rollup-plugin-watch

Version:

A rollup plugin to specify directories and files to watch

60 lines (59 loc) 1.4 kB
{ "name": "rollup-plugin-watch", "version": "1.0.5", "description": "A rollup plugin to specify directories and files to watch", "main": "dist/plugin.cjs.js", "module": "dist/plugin.esm.js", "types": "types/plugin.d.ts", "engines": { "node": ">=16" }, "scripts": { "build": "rollup -c", "lint": "eslint src", "prepublishOnly": "npm run lint && npm run build" }, "keywords": [ "rollup", "rollup-plugin", "watch", "directories", "files", "assets" ], "files": [ "dist", "types" ], "exports": { ".": { "types": "./types/plugin.d.ts", "require": "./dist/plugin.js", "import": "./dist/plugin.mjs" } }, "repository": { "type": "git", "url": "git+https://github.com/jleeson/rollup-plugin-watch.git" }, "author": "Jacob Leeson <jleeson2000@gmail.com> (https://twitter.com/jleesons)", "license": "MIT", "bugs": { "url": "https://github.com/jleeson/rollup-plugin-watch/issues" }, "homepage": "https://github.com/jleeson/rollup-plugin-watch#readme", "devDependencies": { "@eslint/js": "^9.20.0", "esbuild": "^0.25.0", "eslint": "^9.20.1", "globals": "^15.15.0", "rollup": "^4.34.8", "rollup-plugin-esbuild": "^6.2.0" }, "dependencies": { "@rollup/pluginutils": "^5.1.4" }, "peerDependencies": { "rollup": "^2.x.x || ^3.x.x || ^4.x.x" } }