@idleberg/vite-plugin-devcert 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -56,6 +56,8 @@ Hide the info box displayed at startup.
|
|
|
56
56
|
|
|
57
57
|
## Related 👫
|
|
58
58
|
|
|
59
|
+
If this project is not for you, maybe these alternatives suit you better:
|
|
60
|
+
|
|
59
61
|
- [vite-plugin-basic-ssl](https://www.npmjs.com/package/@vitejs/plugin-basic-ssl)
|
|
60
62
|
- [vite-plugin-mkcert](https://www.npmjs.com/package/vite-plugin-mkcert)
|
|
61
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idleberg/vite-plugin-devcert",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "A Vite plugin to generate trusted SSL/TLS certificates for local development",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jan T. Sott",
|
|
@@ -17,10 +17,9 @@
|
|
|
17
17
|
],
|
|
18
18
|
"type": "module",
|
|
19
19
|
"exports": {
|
|
20
|
-
"types": "./dist/plugin.d.
|
|
21
|
-
"import": "./dist/plugin.
|
|
20
|
+
"types": "./dist/plugin.d.mts",
|
|
21
|
+
"import": "./dist/plugin.mjs"
|
|
22
22
|
},
|
|
23
|
-
"types": "./dist/plugin.d.ts",
|
|
24
23
|
"engines": {
|
|
25
24
|
"node": "^20.19.0 || >=22.12.0"
|
|
26
25
|
},
|
|
@@ -35,17 +34,17 @@
|
|
|
35
34
|
"log-symbols": "^7.0.1"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@commitlint/cli": "^20.
|
|
39
|
-
"@commitlint/config-conventional": "^20.
|
|
40
|
-
"@idleberg/configs": "^0.
|
|
41
|
-
"@playwright/test": "^1.
|
|
37
|
+
"@commitlint/cli": "^20.2.0",
|
|
38
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
39
|
+
"@idleberg/configs": "^0.4.1",
|
|
40
|
+
"@playwright/test": "^1.57.0",
|
|
42
41
|
"@types/node": "^24.9.1",
|
|
43
42
|
"concurrently": "^9.2.1",
|
|
44
43
|
"np": "^10.2.0",
|
|
45
|
-
"tsdown": "^0.
|
|
44
|
+
"tsdown": "^0.18.1",
|
|
46
45
|
"typescript": "^5.9.3",
|
|
47
|
-
"vite": "^7.
|
|
48
|
-
"vitest": "^
|
|
46
|
+
"vite": "^7.3.0",
|
|
47
|
+
"vitest": "^4.0.16"
|
|
49
48
|
},
|
|
50
49
|
"peerDependencies": {
|
|
51
50
|
"@expo/devcert": "^1.2.0",
|
|
@@ -54,7 +53,9 @@
|
|
|
54
53
|
"scripts": {
|
|
55
54
|
"build": "tsdown",
|
|
56
55
|
"dev": "tsdown --watch",
|
|
57
|
-
"lint": "
|
|
56
|
+
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
|
|
57
|
+
"lint:biome": "biome check",
|
|
58
|
+
"lint:e18e": "e18e-cli analyze",
|
|
58
59
|
"publish:jsr": "deno publish",
|
|
59
60
|
"publish:npm": "np --any-branch",
|
|
60
61
|
"server": "concurrently -n 'e2e,unit' -c 'blue,green' 'npm:server:*'",
|
|
File without changes
|
|
File without changes
|