rollup-plugin-serve
Version:
Serve your rolled up bundle
52 lines (51 loc) • 1.16 kB
JSON
{
"name": "rollup-plugin-serve",
"version": "3.0.0",
"description": "Serve your rolled up bundle",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"lint": "standard --fix rollup.config.js src/**",
"prepare": "yarn lint && yarn build",
"test": "cd test && rollup -cw || cd .."
},
"keywords": [
"rollup",
"rollup-plugin",
"serve",
"dev-server",
"static"
],
"license": "MIT",
"author": "Thomas Ghysels <info@thomasg.be>",
"homepage": "https://github.com/thgh/rollup-plugin-serve",
"bugs": {
"url": "https://github.com/thgh/rollup-plugin-serve/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/rollup-plugin-serve"
},
"files": [
"dist",
"index.d.ts"
],
"type": "module",
"dependencies": {
"mime": "^4",
"opener": "1"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.0",
"@types/node": "^20.10.1",
"rollup": "4",
"standard": "17"
}
}