-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 863 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
39
40
41
42
{
"name": "datapack-installer",
"version": "1.1.1",
"description": "",
"type": "module",
"bin": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"start-modules": "node dist/index.js --modules",
"dev": "tsc -w ",
"test": "ava",
"build": "tsc"
},
"keywords": [
"minecraft",
"datapack",
"tools",
"auto-installer",
"datapack-manager"
],
"author": "Mario De Luca",
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"chalk": "^5.1.2",
"cheerio": "^1.0.0-rc.12",
"download": "^8.0.0",
"inquirer": "^9.1.4",
"ora": "^6.1.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/download": "^8.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.13"
}
}