-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "hxmeet-core-starter",
"version": "0.0.4",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev:client": "vite",
"dev:server": "nitro dev",
"dev": "npm-run-all -p dev:client dev:server",
"build:client": "vite build",
"build:server": "nitro build",
"build": "npm-run-all build:*",
"start": "node .output/server/index.mjs",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build"
},
"dependencies": {
"@nuxt/ui": "^3.3.0",
"h3": "^1.15.4",
"hxmeet-core-component": "^0.0.4",
"livekit-server-sdk": "^2.13.2",
"ofetch": "^1.4.1",
"uuid": "^11.1.0",
"vue": "^3.5.18",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"nitropack": "^2.12.4",
"npm-run-all2": "^8.0.4",
"typescript": "~5.8.0",
"vite": "^7.0.6",
"vite-plugin-vue-devtools": "^8.0.0",
"vue-tsc": "^3.0.4"
}
}