-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
50
51
52
53
54
55
56
57
{
"name": "mpmgg",
"version": "0.4.1",
"description": "Minecraft Package Manager",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"serve": "ts-node src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"lint": "tslint -c tslint.json -p tsconfig.json",
"clean": "rm -rf dist"
},
"files": [
"dist/index.js",
"dist/commands/*.js",
"dist/components/*.js",
"dist/components/prompts/*.js",
"dist/connections/*.js",
"resources/*/*",
"repository/*.json"
],
"bin": {
"mpm": "dist/index.js"
},
"repository": "git@github.com:mbledkowski/mcli.git",
"author": "Maciej Błędkowski <pub@mble.dk>",
"license": "GPL-3.0",
"private": false,
"devDependencies": {
"@types/cli-progress": "3.11.0",
"@types/debug": "4.1.7",
"@types/fs-extra": "9.0.13",
"@types/jsonfile": "6.1.0",
"@types/minimist": "1.2.2",
"@types/node": "18.0.0",
"@types/progress": "2.0.5",
"@types/prompts": "2.0.14",
"ts-node": "10.8.2",
"tslint": "6.1.3",
"typescript": "4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"cli-progress": "^3.11.1",
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"ipfs-core": "^0.14.2",
"isomorphic-git": "^1.18.3",
"jsonfile": "^6.1.0",
"loglevel": "^1.8.0",
"minimist": "^1.2.6",
"prompts": "^2.4.2"
}
}