forked from liuweiGL/vite-plugin-mkcert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@deskbtm/dev-mkcert",
"version": "1.17.5",
"description": "Provide certificates for https dev service",
"repository": {
"type": "git",
"url": "https://github.com/deskbtm-publish/dev-mkcert.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"webpack",
"vite",
"plug",
"certificate",
"development",
"tls",
"ssl",
"localhost",
"https",
"mkcert"
],
"author": "Han <han@deskbtm.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deskbtm-publish/dev-mkcert/issues"
},
"homepage": "https://github.com/deskbtm-publish/dev-mkcert#readme",
"engines": {
"node": ">=v16.7.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": {
"dev": "yarn build && shx rm -rf \"./node_modules/.mkcert\" && webpack serve -c playground/webpack.config.js",
"build": "tsx ./script/build.mts",
"prepack": "npm run build",
"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",
"eslint-plugin-simple-import-sort": "12.0.0",
"html-webpack-plugin": "5.6.0",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"shx": "^0.3.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.0.2"
},
"packageManager": "yarn@4.1.1"
}