102 lines
2.4 KiB
JSON
102 lines
2.4 KiB
JSON
{
|
|
"name": "@rollup-apps/plugin-html",
|
|
"version": "0.0.1",
|
|
"description": "Creates HTML files to serve Rollup bundles",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "rollup/plugins",
|
|
"directory": "packages/html"
|
|
},
|
|
"author": "Andrew Powell <andrew@shellscape.org>",
|
|
"homepage": "https://github.com/rollup/plugins/tree/master/packages/html#readme",
|
|
"bugs": "https://github.com/rollup/plugins/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",
|
|
"test": "ava",
|
|
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
|
"ci:lint": "pnpm build && pnpm lint-staged",
|
|
"ci:test": "pnpm test -- --verbose",
|
|
"dev-test": "ava --match='handlebars*' --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"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|