-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "rpg4bots",
"version": "1.0.0",
"description": "an RPG not meant to be played by people, but bots instead",
"main": "server/index.ts",
"scripts": {
"start": "ts-node server/index.ts",
"dev": "ts-node-dev server/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinsandow/rpg4bots.git"
},
"homepage": "https://github.com/kevinsandow/rpg4bots#readme",
"bugs": {
"url": "https://github.com/kevinsandow/rpg4bots/issues"
},
"keywords": [
"rpg",
"socket.io",
"bots",
"ai"
],
"author": "Kevin Sandow",
"license": "MIT",
"dependencies": {
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0"
}
}