forked from liuweiGL/vite-plugin-mkcert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vite-plugin-mkcert",
"version": "1.17.4",
"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": "[email protected]+",
"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 && del /Q \"./node_modules/.mkcert\" && 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": "^20.0.2",
"axios": "^1.6.5",
"debug": "^4.3.4",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "5.0.11"
},
"peerDependencies": {
"vite": ">=3"
}
}