{
"name": "rollup-plugin-html-entry2",
"version": "0.0.1",
"description": "Teaches rollup how to deal with HTML, allows to use HTML-files as entry-points.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.cerxes.net/rollup-apps/plugin-html.git"
},
"author": "Miel Truyen ",
"homepage": "https://git.cerxes.net/rollup-apps/plugin-html",
"bugs": "https://git.cerxes.net/rollup-apps/plugin-html/issues",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "dist/es/index.js",
"module": "./dist/es/index.js",
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/es/index.js"
},
"publishConfig": {
"registry": "https://npm.cerxes.net",
"access": "public"
},
"scripts": {
"build": "rollup -c",
"prerelease": "pnpm build",
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "pnpm build && pnpm lint-staged",
"ci:test": "pnpm test -- --verbose",
"run-test": "ava",
"save-test": "ava --update-snapshots"
},
"files": [
"dist",
"!dist/**/*.map",
"types",
"README.md",
"LICENSE"
],
"keywords": [
"rollup",
"plugin",
"html",
"template"
],
"peerDependencies": {
"rollup": "^3.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
},
"dependencies": {
"@rollup/pluginutils": "^5.0.1",
"parse5": "^7.1.2"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@rollup/plugin-typescript": "^11.1.0",
"postcss": "^8.4.22",
"rollup": "^3.20.3",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.0.4",
"del-cli": "^5.0.0",
"tslib": "^2.5.0",
"ava": "^5.2.0",
"ts-node": "^10.9.1",
"@babel/core": "^7.21.4",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"rollup-plugin-delete": "^2.0.0",
"@babel/preset-typescript": "^7.21.4",
"nyc": "^15.1.0",
"lint-staged": "^13.2.1",
"handlebars": "^4.7.7",
"@rollup/plugin-url": "^8.0.1",
"chalk": "^5.2.0",
"rollup-plugin-livereload": "^2.0.5"
},
"types": "./types/index.d.ts",
"ava": {
"workerThreads": false,
"files": [
"!**/fixtures/**",
"!**/util/**",
"!**/helpers/**",
"!**/recipes/**",
"!**/types.ts"
],
"extensions": {
"ts": "module",
"js": true
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-vm-modules"
]
}
}