-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vite-plugin-vue-ssr",
"version": "1.0.0",
"packageManager": "[email protected]",
"type": "module",
"license": "MIT",
"description": "Vite plugin to develop Vue SSR apps",
"bugs": {
"url": "https://github.com/yooouuri/vite-plugin-vue-ssr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yooouuri/vite-plugin-vue-ssr.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./plugin": {
"import": "./dist/plugin/index.mjs",
"types": "./dist/plugin/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"unit-test": "vitest"
},
"keywords": [
"vue",
"ssr",
"vite"
],
"dependencies": {
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"@babel/types": "^7.26.3",
"@unhead/ssr": "^1.11.14",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@unhead/vue": "^1.11.14",
"devalue": "^5.1.1",
"h3": "^1.13.0",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"peerDependencies": {
"@unhead/vue": "^1.11.14",
"devalue": "^5.1.1",
"h3": "^1.13.0",
"vite": "^6.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"peerDependenciesMeta": {
"devalue": {
"optional": true
}
}
}