-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "mc_mod_translate",
"version": "0.1.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"init": "npm i",
"make": "npx babel --config-file=./babel.config.json ./src --copy-files --extensions \".ts\" --out-dir dist ",
"run": "node dist/main.js"
},
"bin": {
"mc_mod_translate": "./bin/mc_mod_translate"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/cli-progress": "^3.11.0",
"@types/express": "^4.17.11",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.2.2",
"@types/md5": "^2.3.0",
"@types/node": "^14.14.20",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.17.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.12.5",
"axios": "^0.21.1",
"chalk": "4.1.2",
"cli-progress": "^3.11.2",
"commander": "^9.4.0",
"express": "^4.17.1",
"figlet": "^1.5.2",
"inquirer": "8.2.4",
"jszip": "^3.10.1",
"md5": "^2.3.0",
"yaml": "^2.1.1"
}
}