forked from liuweiGL/vite-plugin-mkcert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "vite-plugin-mkcert",
"version": "1.17.7",
"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 && biome lint --colors=force --fix --unsafe \"plugin\" ",
"release": "semantic-release"
},
"dependencies": {
"@octokit/rest": "^20.1.1",
"axios": "^1.7.4",
"debug": "^4.3.6",
"picocolors": "^1.0.1",
"which": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.3.0",
"esbuild": "^0.23.0",
"semantic-release": "^24.0.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vite": "5.4.0"
},
"peerDependencies": {
"vite": ">=3"
}
}