-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.79 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
{
"name": "open-chat",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"ready": "./node_modules/.bin/vp fmt && ./node_modules/.bin/vp lint && vp run server#build && vp run website#build && vp run @cc-heart/open-chat#build",
"dev": "vp run dev:all",
"dev:all": "concurrently --kill-others --kill-others-on-fail \"vp run server#dev\" \"vp run website#dev\"",
"dev:website": "vp run website#dev",
"dev:server": "vp run server#dev",
"open-chat": "node tools/open-chat/bin/open-chat.mjs",
"open-chat:dev": "vp run @cc-heart/open-chat#dev",
"build": "pnpm open-chat --build",
"build:cli": "vp run @cc-heart/open-chat#build",
"build:package": "vp run website#build && vp run @cc-heart/open-chat#build && node tools/open-chat/scripts/stage-package.mjs",
"prepare": "vp config",
"kill": "lsof -ti :3000 -sTCP:LISTEN | xargs kill -9 2>/dev/null; lsof -ti :8082 -sTCP:LISTEN | xargs kill -9 2>/dev/null; lsof -ti :4311 -sTCP:LISTEN | xargs kill -9 2>/dev/null; echo \"ports 3000/8082/4311 cleaned\"",
"kill:all": "lsof -ti :3000 -sTCP:LISTEN | xargs kill -9 2>/dev/null; lsof -ti :8082 -sTCP:LISTEN | xargs kill -9 2>/dev/null; lsof -ti :5173 -sTCP:LISTEN | xargs kill -9 2>/dev/null; lsof -ti :4311 -sTCP:LISTEN | xargs kill -9 2>/dev/null; echo \"all dev ports cleaned\""
},
"dependencies": {
"@antdv-next/x-sdk": "catalog:",
"vue": "catalog:"
},
"devDependencies": {
"@types/cors": "catalog:",
"@types/express": "catalog:",
"@types/node": "catalog:",
"concurrently": "^9.0.0",
"cors": "catalog:",
"dotenv": "catalog:",
"express": "catalog:",
"sass-embedded": "catalog:",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.33.0"
}