mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 15:32:50 +00:00
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "vite-plugin-mkcert",
|
|
"version": "1.16.0",
|
|
"description": "Provide certificates for vite's https dev service",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/liuweiGL/vite-plugin-mkcert.git"
|
|
},
|
|
"keywords": [
|
|
"vite-plugin",
|
|
"certificate",
|
|
"https",
|
|
"mkcert"
|
|
],
|
|
"author": "liuweigl",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/liuweiGL/vite-plugin-mkcert/issues"
|
|
},
|
|
"homepage": "https://github.com/liuweiGL/vite-plugin-mkcert#readme",
|
|
"engines": {
|
|
"node": ">=v16.7.0"
|
|
},
|
|
"packageManager": "pnpm@7.0.0+",
|
|
"types": "./dist/index.d.ts",
|
|
"module": "./dist/mkcert.mjs",
|
|
"main": "./dist/mkcert.js",
|
|
"files": [
|
|
"plugin",
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/mkcert.mjs",
|
|
"require": "./dist/mkcert.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "pnpm build && vite -c playground/vite.config.ts --clearScreen false",
|
|
"build": "tsx script/build.mts",
|
|
"lint": "tsc --noEmit && eslint \"plugin/**/*.ts\" --color --quiet",
|
|
"release": "semantic-release"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^19.0.5",
|
|
"axios": "^1.2.2",
|
|
"debug": "^4.3.4",
|
|
"picocolors": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.2",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/node": "^18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"esbuild": "^0.16.17",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.27.4",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.8.2",
|
|
"semantic-release": "^20.0.2",
|
|
"tsx": "^3.12.2",
|
|
"typescript": "^4.9.4",
|
|
"vite": "4.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": ">=3"
|
|
}
|
|
}
|