-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "mineflayer-plugin-template",
"version": "1.0.0",
"description": "A template repository for creating Mineflayer plugins using Typescript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "tsc && require-self",
"clean": "rm -rf lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDudeFromCI/mineflayer-plugin-template.git"
},
"keywords": [
"mineflayer",
"plugin",
"template"
],
"author": "TheDudeFromCI",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDudeFromCI/mineflayer-plugin-template/issues"
},
"homepage": "https://github.com/TheDudeFromCI/mineflayer-plugin-template#readme",
"dependencies": {
"mineflayer": "^2.21.0"
},
"devDependencies": {
"@types/node": "14.14.5",
"require-self": "0.2.3",
"typescript": "4.0.5"
},
"files": [
"lib/**/*"
]
}