-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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": "tesseract-mc",
"version": "1.0.0",
"description": "An advanced Minecraft bot which takes natural language as input.",
"main": "index.js",
"author": "KodingDev",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"parser:compile": "nearleyc src/grammar/grammar.ne > src/grammar/grammar.ts && prettier src/grammar/grammar.ts --write",
"lint:run": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --quiet --fix"
},
"dependencies": {
"@skyra/timestamp": "^1.0.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"dotenv-extended": "^2.9.0",
"json-colorizer": "^2.2.2",
"mineflayer": "^3.3.0",
"mineflayer-pathfinder": "^1.6.1",
"nearley": "^2.20.1",
"node-color-log": "^5.2.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/nearley": "^2.11.1",
"@types/node": "^14.14.34",
"@types/vec3": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}