forked from garzj/d4sd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
58
59
60
{
"name": "d4sd",
"version": "1.5.2",
"description": "A downloader for https://digi4school.at/.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npx ttsc -p .",
"start": "node ./lib/cli.js",
"deploy": "npm run build && npm start",
"dev": "export NODE_ENV=development || set NODE_ENV=development&& npx ts-node-dev -C ttypescript --respawn ./src/index.ts",
"prepack": "npm run build",
"upgrade": "npx ncu -ux @types/node-fetch node-fetch @types/inquirer inquirer"
},
"author": "Johannes Garz <johannes@garz.dev> (https://garz.dev/)",
"license": "GPL-3.0 License",
"bin": {
"d4sd": "lib/cli.js"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/inquirer": "^8.2.2",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"npm-check-updates": "^16.7.10",
"ts-node-dev": "^2.0.0",
"ts-transform-paths": "^3.0.0",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
},
"dependencies": {
"cmd-ts": "^0.13.0",
"cookie": "^0.5.0",
"defaults-deep-ts": "^0.2.3",
"dotenv": "^16.3.1",
"inquirer": "^9.2.11",
"minimatch": "^9.0.3",
"muhammara": "^4.0.0",
"node-fetch": "^3.3.2",
"puppeteer": "^21.3.4",
"sanitize-filename": "^1.6.3"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garzj/d4sd.git"
},
"keywords": [
"digi4school",
"download",
"pdf"
],
"bugs": {
"url": "https://github.com/garzj/d4sd/issues"
},
"homepage": "https://github.com/garzj/d4sd#readme"
}