-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "wallhaven-cli",
"version": "1.0.0",
"main": "./bin/index.js",
"repository": "https://github.com/GregSithole/wallhaven-cli.git",
"author": "Greg Sithole <gregsithole@hotmail.co.za>",
"description": "The Wallhaven command line interface to download Wallpapers from Wallhaven.cc",
"license": "MIT",
"type": "module",
"bin": {
"wallhaven-cli": "./bin/index.js"
},
"dependencies": {
"axios": "^1.2.0",
"clear": "^0.1.0",
"commander": "^9.4.1",
"conf": "^10.2.0",
"figlet": "^1.5.2",
"inquirer": "^9.1.4",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"ora": "^6.1.2",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"typescript": "^4.9.3"
},
"scripts": {
"chmod": "chmod u+x ./bin/index.js",
"build": "yarn tsc && yarn chmod",
"lint": "eslint '**/*.{js,ts}' --fix",
"prettier": "prettier --write .",
"tsc": "tsc"
}
}