-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "cyber-chess-roast",
"version": "1.0.0",
"description": "实时国际象棋评论系统 - 基于 GitHub Copilot SDK",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "tsx watch src/server/index.ts",
"client:dev": "vite",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc",
"build:client": "vite build",
"start": "node dist/server/index.js",
"preview": "vite preview"
},
"keywords": [
"chess",
"ai",
"copilot",
"commentary",
"real-time"
],
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot-sdk": "^0.1.18",
"chess.js": "^1.3.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"stockfish": "^17.1.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"tsx": "^4.19.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
}
}