-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "vite-plugin-mkcert",
"version": "1.17.6",
"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": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mkcert.mjs",
"require": "./dist/mkcert.js"
}
},
"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": "^21.0.2",
"axios": "^1.7.7",
"debug": "^4.3.7",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.9.0",
"esbuild": "^0.24.0",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "5.4.11"
},
"peerDependencies": {
"vite": ">=3"
}
}