-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "d4sd",
"version": "2.1.4",
"description": "A downloader for https://digi4school.at/.",
"bin": {
"d4sd": "esm/cli.js"
},
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js",
"default": "./esm/index.js"
},
"./*": "./*.js"
},
"main": "./cjs/index.js",
"types": "./cjs/index.d.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --module es2022 && tsc-alias",
"build:cjs": "tsc --module commonjs --outDir cjs && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"prepack": "yarn build",
"start": "node ./esm/cli.js",
"tsx": "dotenv -v NODE_ENV=development tsx ./src/cli.ts --",
"dev": "dotenv -v NODE_ENV=development tsx watch --clear-screen=false ./src/cli.ts --",
"ncu": "ncu -u -x typescript",
"lint": "prettier --check . '!./{,data}' && eslint",
"format": "prettier -w . '!./{,data}' && eslint --fix"
},
"author": "Johannes Garz <johannes@garz.dev> (https://garz.dev/)",
"license": "GPL-3.0",
"devDependencies": {
"@types/async-retry": "^1.4.9",
"@types/cli-progress": "^3.11.6",
"@types/cookie": "^1.0.0",
"@types/inquirer": "^9.0.9",
"@types/minimatch": "^6.0.0",
"@types/node": "^25.2.0",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.5.5",
"npm-check-updates": "^19.3.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "5.5.4"
},
"dependencies": {
"async-retry": "^1.3.3",
"cli-progress": "^3.12.0",
"cmd-ts": "^0.14.3",
"cookie": "^1.1.1",
"inquirer": "^13.2.2",
"minimatch": "^10.1.1",
"muhammara": "^6.0.3",
"node-fetch": "^3.3.2",
"puppeteer": "^24.36.1",
"sanitize-filename": "^1.6.3"
},
"files": [
"/{esm,cjs}/**/*.{js,d.ts,json}",
"/LICENSE",
"/README.md"
],
"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"
}