-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "@4350pchris/vue-dynamic-client-only",
"version": "0.0.8",
"author": {
"name": "Chris-Robin Ennen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/4350pChris/vue-dynamic-client-only.git"
},
"description": "A Vue 3 component that renders its children only on the client using a dynamic component.",
"keywords": [
"vue",
"vue-ssr",
"vite",
"vue3",
"vitejs",
"component",
"client-only",
"ssr",
"server-side-rendering",
"dynamic-component"
],
"license": "MIT",
"main": "dist/client-only.umd.cjs",
"module": "dist/client-only.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"import": "./dist/client-only.js",
"require": "./dist/client-only.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "vue-tsc && vite build"
},
"peerDependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@vitejs/plugin-vue": "^4.5.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vue": "^3.3.11",
"vue-tsc": "^1.8.25"
}
}