-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1006 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1006 Bytes
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
{
"name": "vite-plugin-srvx",
"version": "1.0.2",
"description": "Vite plugin for srvx - Universal Server integration",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"vite",
"vite-plugin",
"srvx",
"server",
"ssr"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"srvx": ">=0.9.0",
"vite": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"srvx": "^0.9.7",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vite": "^6.0.5"
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
}