-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "tetrio-bot",
"version": "0.1.0",
"description": "A Tetris bot capable of automatically playing custom multiplayer matches in TETR.IO.",
"type": "module",
"author": {
"name": "Ahmed Rangel",
"email": "ahmedrangel@outlook.com",
"url": "https://ahmedrangel.com/"
},
"homepage": "https://github.com/ahmedrangel/tetrio-bot",
"repository": {
"type": "git",
"url": "https://github.com/ahmedrangel/tetrio-bot"
},
"bugs": {
"url": "https://github.com/ahmedrangel/tetrio-bot/issues"
},
"license": "MIT",
"keywords": [
"tetrio",
"tetr.io",
"tetris",
"eltetris",
"game",
"bot",
"typescript"
],
"scripts": {
"start": "tsx src/index.ts",
"lint": "eslint --fix --config .config/eslint.mjs"
},
"devDependencies": {
"@haelp/teto": "2.6.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "^22.13.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}