-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
49 lines (49 loc) · 1.72 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
{
"name": "lanette",
"version": "0.0.1",
"description": "A bot for Pokemon Showdown",
"main": "build/app.js",
"scripts": {
"build": "node build.js",
"gameserver": "npm run build && node --enable-source-maps build/src/game-server/server.js",
"lint": "eslint --cache",
"localstart": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror build/app.js -- --offline",
"localtest": "npm run lint && npm run build && npm run tsc && npm run mocha -- --offline",
"mocha": "node --enable-source-maps --max-old-space-size=2048 build/mocha.js",
"start": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror build/app.js",
"tempconfig": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror --expose-gc build/temp-config.js",
"test": "npm run lint && npm run build && npm run tsc && npm run mocha",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirDonovan/Lanette.git"
},
"author": "Quinton Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/sirDonovan/Lanette/issues"
},
"homepage": "https://github.com/sirDonovan/Lanette#readme",
"dependencies": {
"@types/eslint": "9.6.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@types/ws": "8.5.13",
"bufferutil": "4.0.8",
"esbuild": "0.24.0",
"typescript": "5.7.2",
"utf-8-validate": "6.0.5",
"ws": "8.18.0"
},
"devDependencies": {
"eslint": "9.17.0",
"mocha": "11.0.1",
"typescript-eslint": "8.18.0"
},
"optionalDependencies": {
"heapdump": "^0.3.15",
"ts-loader": "^9.5.1",
"webpack": "^5.97.1"
}
}