UNPKG

@vitejs/plugin-basic-ssl

Version:

A plugin to generate untrusted certificates which still allows to access the page after proceeding a wall with warning.

56 lines 1.45 kB
{ "name": "@vitejs/plugin-basic-ssl", "version": "2.1.0", "license": "MIT", "author": "Evan You and Vite Contributors", "files": [ "dist" ], "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "engines": { "node": "^18.0.0 || ^20.0.0 || >=22.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/vitejs/vite-plugin-basic-ssl.git" }, "bugs": { "url": "https://github.com/vitejs/vite-plugin-basic-ssl/issues" }, "homepage": "https://github.com/vitejs/vite-plugin-basic-ssl/#readme", "peerDependencies": { "vite": "^6.0.0 || ^7.0.0" }, "devDependencies": { "@types/node": "^22.15.34", "conventional-changelog-cli": "^5.0.0", "enquirer": "^2.4.1", "execa": "^9.6.0", "minimist": "^1.2.8", "node-forge": "^1.3.1", "picocolors": "^1.1.1", "prettier": "^3.6.2", "semver": "^7.7.2", "tsx": "^4.20.3", "typescript": "^5.8.3", "unbuild": "^3.5.0", "vite": "^6.2.0", "vitest": "^3.2.4" }, "scripts": { "dev": "unbuild --stub", "build": "unbuild && tsx scripts/patchCJS.ts", "test": "vitest run", "format": "prettier --write --cache .", "release": "tsx -C import scripts/release.ts", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s" } }