-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mangathr-legacy",
"version": "0.5.0",
"description": "A terminal client for downloading manga, with support for sites like MangaDex, Cubari and more.",
"main": "bin/mangathr.js",
"repository": "git://github.com/browningluke/mangathr-legacy.git",
"prepublish": "tsc",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node bin/mangathr.js",
"test": "NODE_ENV=test jest",
"watch": "tsc --watch --project './tsconfig.json'"
},
"bin": {
"mangathr-legacy": "bin/mangathr.js"
},
"author": "Luke Browning - [email protected]",
"license": "ISC",
"_moduleAliases": {
"@commands": "dist/commands",
"@databases": "dist/databases",
"@helpers": "dist/helpers",
"@plugins": "dist/plugins",
"@types": "dist/types",
"@core": "dist"
},
"devDependencies": {
"@types/archiver": "^5.3.4",
"@types/better-sqlite3": "^7.6.8",
"@types/cheerio": "^0.22.35",
"@types/express": "^4.17.21",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@types/node-fetch": "^2.6.9",
"@types/pg": "^8.11.6",
"@types/progress": "^2.0.7",
"@types/request-promise": "^4.1.51",
"@types/uuid": "^8.3.4",
"jest": "^27.5.1",
"node-stream-zip": "^1.15.0",
"ts-jest": "^27.1.5",
"ts-node": "^9.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"archiver": "^5.3.2",
"better-sqlite3": "^9.2.2",
"cheerio": "^1.0.0-rc.6",
"cli-select": "^1.1.2",
"cli-table3": "^0.6.3",
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"module-alias": "^2.2.3",
"mongodb": "^4.17.2",
"node-fetch": "^2.7.0",
"pg": "^8.12.0",
"progress": "^2.0.3",
"protobufjs": ">=7.2.5",
"uuid": "^8.3.2"
}
}