113 lines
3.0 KiB
JSON
113 lines
3.0 KiB
JSON
{
|
|
"name": "rollup-plugin-html-entry2",
|
|
"version": "0.0.7",
|
|
"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 <miel.truyen@cerxes.net>",
|
|
"homepage": "https://git.cerxes.net/rollup-apps/plugin-html",
|
|
"bugs": "https://git.cerxes.net/rollup-apps/plugin-html/issues",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/*.map",
|
|
"types",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"keywords": [
|
|
"rollup",
|
|
"plugin",
|
|
"html",
|
|
"template"
|
|
],
|
|
"peerDependencies": {
|
|
"rollup": "^4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"rollup": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@rollup/pluginutils": "^5.1.0",
|
|
"magic-string": "^0.30.8",
|
|
"parse5": "^7.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.3",
|
|
"@babel/plugin-syntax-import-assertions": "^7.24.1",
|
|
"@babel/preset-env": "^7.24.3",
|
|
"@babel/preset-react": "^7.24.1",
|
|
"@babel/preset-typescript": "^7.24.1",
|
|
"@jest/globals": "^29.7.0",
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-replace": "^5.0.5",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@rollup/plugin-url": "^8.0.2",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^18.19.26",
|
|
"@types/react": "^18.2.69",
|
|
"@types/react-dom": "^18.2.22",
|
|
"chalk": "^5.3.0",
|
|
"del-cli": "^5.1.0",
|
|
"handlebars": "^4.7.8",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^13.3.0",
|
|
"mime": "^4.0.1",
|
|
"nyc": "^15.1.0",
|
|
"postcss": "^8.4.38",
|
|
"puppeteer": "^21.11.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"rollup": "^4.13.0",
|
|
"rollup-plugin-delete": "^2.0.0",
|
|
"rollup-plugin-livereload": "^2.0.5",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"ts-jest": "^29.1.2",
|
|
"typescript": "^5.4.3",
|
|
"typedoc": "^0.25.12",
|
|
"pretty-format": "^29.7.0"
|
|
},
|
|
"types": "./types/index.d.ts",
|
|
"jest": {
|
|
"preset": "ts-jest/presets/default-esm",
|
|
"setupFiles": [
|
|
"./test/setup.js"
|
|
],
|
|
"collectCoverage": true,
|
|
"coveragePathIgnorePatterns": [
|
|
"test/*"
|
|
]
|
|
},
|
|
"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",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
"save-test": "NODE_OPTIONS='--experimental-vm-modules' jest -u",
|
|
"docs": "typedoc src/index.ts --sort visibility --sort required-first --sort source-order"
|
|
}
|
|
}
|