-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.86 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.86 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
77
78
79
{
"name": "@vitejs/plugin-basic-ssl",
"version": "2.3.0",
"type": "module",
"license": "MIT",
"author": "Evan You and Vite Contributors",
"description": "A Vite plugin to generate untrusted certificates for HTTPS dev servers",
"keywords": [
"vite",
"vite-plugin",
"certificate",
"https"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest run",
"format": "prettier --write --cache .",
"prepublishOnly": "npm run build",
"release": "tsx scripts/release.ts",
"ci-publish": "tsx scripts/publishCI.ts"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"packageManager": "pnpm@10.32.1",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-basic-ssl.git"
},
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-basic-ssl/issues"
},
"homepage": "https://github.com/vitejs/vite-plugin-basic-ssl/#readme",
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@vitejs/release-scripts": "^1.6.0",
"execa": "^9.6.1",
"node-forge": "^1.3.3",
"picocolors": "^1.1.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite": "^8.0.2",
"vitest": "^4.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"compatiblePackages": {
"schemaVersion": 1,
"rolldown": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
},
"rollup": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
}
}
}