-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 KB
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
{
"name": "@idleberg/vite-plugin-devcert",
"version": "0.5.2",
"description": "A Vite plugin to generate trusted SSL/TLS certificates for local development",
"license": "MIT",
"author": "Jan T. Sott",
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/vite-plugin-devcert.git"
},
"keywords": [
"vite-plugin",
"certificate",
"https",
"ssl",
"tls"
],
"type": "module",
"exports": {
"types": "./dist/plugin.d.mts",
"import": "./dist/plugin.mjs"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
"lint:biome": "biome check",
"lint:e18e": "e18e-cli analyze",
"prepack": "npm run build",
"publish:jsr": "deno publish",
"publish:npm": "np",
"server": "concurrently -n 'e2e,unit' -c 'blue,green' 'npm:server:*'",
"server:http": "vite --config e2e/vite.config-http.ts",
"server:https": "vite --config e2e/vite.config-https.ts",
"test": "concurrently -n 'server,client' -c 'blue,green' 'npm:test:*'",
"test:e2e": "playwright test",
"test:unit": "vitest run --exclude e2e"
},
"dependencies": {
"boxen": "^8.0.1",
"kleur": "^4.1.5",
"log-symbols": "^7.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@expo/devcert": "^1.2.1",
"@idleberg/configs": "^0.4.2",
"@playwright/test": "^1.58.2",
"@types/node": "^24.9.1",
"concurrently": "^9.2.1",
"np": "^11.0.2",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@expo/devcert": "^1.2.1",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}