-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "vite-plugin-secure-now",
"version": "0.0.8",
"description": "A Vite plugin to get instant https for your development server",
"type": "module",
"author": "Psyirius",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/psyirius/vite-plugin-secure-now"
},
"bugs": {
"url": "https://github.com/psyirius/vite-plugin-secure-now/issues"
},
"homepage": "https://github.com/psyirius/vite-plugin-secure-now#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"keywords": [
"vite",
"vite-plugin",
"ssl",
"https",
"secure",
"development",
"node",
"server",
"traefik"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "unbuild",
"prepack": "unbuild"
},
"peerDependencies": {
"vite": ">=4.0.0 <7.0.0"
},
"dependencies": {
"picocolors": "^1.1.1"
},
"devDependencies": {
"vite": "^5.4.11",
"@types/node": "^18.19.68",
"@changesets/cli": "^2.27.11",
"unbuild": "^3.0.1"
}
}