-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 977 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
{
"name": "csv-fetch",
"description": "Download a list of URLs from a CSV file.",
"version": "1.4.0",
"author": "Max Harlow <[email protected]> (https://maxharlow.com/)",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/maxharlow/csv-fetch.git"
},
"dependencies": {
"axios": "1.7.x",
"axios-rate-limit": "1.4.x",
"axios-retry": "4.5.x",
"better-sqlite3": "11.7.x",
"chalk": "5.4.x",
"fs-extra": "11.2.x",
"luxon": "3.5.x",
"papaparse": "5.4.x",
"scramjet": "4.37.x",
"simple-wcswidth": "1.0.x",
"yargs": "17.7.x"
},
"bin": {
"csv-fetch": "./bin.js"
},
"scripts": {
"postinstall": "csv-fetch completion > /usr/local/share/zsh/site-functions/_csv-fetch || true",
"postuninstall": "rm -f /usr/local/share/zsh/site-functions/_csv-fetch"
}
}