-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "minecrafthawkeye",
"version": "1.3.9",
"description": "Minecraft bot for equations when shooting an arrow",
"main": "dist/index.js",
"files": [
"dist/*"
],
"dependencies": {
"detect-collisions": "^7.0.5",
"uuid": "^9.0.1",
"vec3": "^0.1.10"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/uuid": "^9.0.8",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "^5.1.1",
"minecraft-wrap": "^1.5.1",
"mineflayer": "^4.20.1",
"mocha": "^10.4.0",
"prismarine-item": "^1.14.0",
"prismarine-viewer": "^1.28.0",
"swc": "^1.0.11",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^5.4.5"
},
"scripts": {
"server": "ts-node test/common/start_test_server.ts",
"server:docker": "docker run --rm -it -p:25565:25565 -v $(pwd):/app/ minecraft_server ts-node /app/test/common/start_test_server",
"server:build": "docker build -t minecraft_server -f ./.devcontainer/Dockerfile .",
"isnpect": "node --watch --inspect=0.0.0.0:9229 --inspect -r ts-node/register -r tsconfig-paths/register $1",
"test": "mocha -r ts-node/register -r test/hooks.ts --timeout 60000 --exit",
"test:all": "npm run test 'test/hawkTests/*.ts'",
"build": "babel src --extensions \".ts,.js\" --delete-dir-on-start --out-dir dist",
"pack": "npm run build && npm run build:types && npm pack",
"build:types": "tsc -p tsconfig.build.json",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sefirosweb/minecraftHawkEye.git"
},
"author": "Sefirosweb",
"license": "ISC",
"bugs": {
"url": "https://github.com/sefirosweb/minecraftHawkEye/issues"
},
"homepage": "https://github.com/sefirosweb/minecraftHawkEye#readme",
"directories": {
"test": "tests"
},
"keywords": [
"minecraft",
"archer"
]
}