-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1010 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
{
"name": "zonerama_downloader",
"version": "0.0.1",
"description": "Allows to download gallery from zonerama",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node index.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"type": "module",
"keywords": [
"zonerama",
"image downloader"
],
"author": "Jiri Bazant",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jbazant/zonerama-downloader.git"
},
"bugs": {
"url": "https://github.com/jbazant/zonerama-downloader/issues"
},
"homepage": "https://github.com/jbazant/zonerama-downloader",
"dependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.9.2",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"devDependencies": {
"prettier": "^3.1.0"
}
}