-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 872 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 872 Bytes
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
{
"name": "pokemon-text-battle",
"version": "1.1.0",
"description": "可以在命令行和AI进行第九代随机六六单打",
"scripts": {
"start": "npm run build && node src/battle/pve-battle.js",
"build": "tsc",
"build:watch": "tsc --watch",
"postinstall": "npm run build"
},
"keywords": [
"pokemon",
"battle",
"console",
"ai",
"deepseek",
"showdown"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/relat-ivity/pokemon-text-battle"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@smogon/calc": "^0.10.0",
"axios": "^1.6.0",
"dotenv": "^16.6.1",
"pokemon-showdown": "^0.11.10",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3"
}
}