This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
72
73
{
"name": "@bistroo/vue-ssr",
"version": "0.0.16",
"type": "module",
"license": "MIT",
"description": "Minimalistic wrapper to run SSR Vue apps",
"bin": {
"vue-ssr": "bin/vue-ssr.js"
},
"bugs": {
"url": "https://github.com/bistroo/vue-ssr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bistroo/vue-ssr.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -w -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue3",
"ssr",
"vite"
],
"dependencies": {
"@babel/generator": "^7.21.4",
"@babel/parser": "^7.21.4",
"@babel/traverse": "^7.21.4",
"@babel/types": "^7.21.4",
"@nuxt/devalue": "^2.0.2",
"@vitejs/plugin-vue": "^4.2.3",
"c12": "^1.4.2",
"cheerio": "1.0.0-rc.12",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"magicast": "^0.2.10",
"mri": "^1.2.0",
"serve-static": "^1.15.0",
"vite": "^4.4.7"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.17.1",
"@unhead/schema": "^1.1.35",
"@vueuse/head": "^1.1.26",
"esbuild": "^0.17.19",
"rollup": "^3.27.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.1.6",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"peerDependencies": {
"@vueuse/head": "^1.1.26",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
}
}