-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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": "mineflayer-crafting-util",
"version": "0.2.0",
"description": "A plugin to simplify crafting recipes.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "rm -rf lib",
"fix-lint": "ts-standard --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GenerelSchwerz/mineflayer-crafting-util.git"
},
"keywords": [
"bot",
"mineflayer",
"minecraft",
"crafting"
],
"author": "GenerelSchwerz",
"license": "MIT",
"bugs": {
"url": "https://github.com/GenerelSchwerz/mineflayer-crafting-util/issues"
},
"homepage": "https://github.com/GenerelSchwerz/mineflayer-crafting-util#readme",
"files": [
"lib/**/*"
],
"ts-standard": {
"ignore": [
"lib",
"examples"
]
},
"devDependencies": {
"chai": "^5.2.0",
"mineflayer": "^4.17.0",
"mineflayer-crafting-util": "file:.",
"mocha": "^11.1.0",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}