vite-plugin-manifest-sri
Version:
Subresource Integrity hashes for the Vite.js manifest.
78 lines • 2.03 kB
JSON
{
"name": "vite-plugin-manifest-sri",
"description": "Subresource Integrity hashes for the Vite.js manifest.",
"version": "0.2.0",
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"author": "Máximo Mussini <maximomussini@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ElMassimo/vite-plugin-manifest-sri"
},
"homepage": "https://github.com/ElMassimo/vite-plugin-manifest-sri",
"bugs": "https://github.com/ElMassimo/vite-plugin-manifest-sri/issues",
"keywords": [
"sri",
"security",
"subresource integrity",
"build",
"vite",
"vite-plugin",
"vitejs",
"plugin"
],
"devDependencies": {
"@mussi/eslint-config": "^0.5.1",
"@types/debug": "^4.1.12",
"@types/node": "^18.18.9",
"conventional-changelog-cli": "^2.2.2",
"cross-spawn": "^7.0.3",
"enquirer": "^2.4.1",
"eslint": "^7.32.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"rollup": "^4.4.1",
"semver": "^7.5.4",
"tsup": "^7.2.0",
"typescript": "^4.9.5",
"vite": "^5.0.0",
"vitest": "^0.34"
},
"eslintConfig": {
"extends": [
"@mussi/eslint-config"
],
"globals": {
"$ref": "readonly",
"$computed": "readonly",
"$shallowRef": "readonly",
"$$": "readonly",
"$": "readonly"
}
},
"scripts": {
"lint": "eslint .",
"test": "vitest",
"dev": "npm run build -- --watch",
"example": "npm -C example run dev",
"example:build": "npm -C example run build",
"example:now": "npm -C example run now",
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"release": "node scripts/release.cjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
}
}