-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"name": "itchio-downloader",
"version": "1.2.0",
"description": "Download free games from itch.io programmatically — no Puppeteer, no API key required",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"itchio-downloader": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "shx rm -rf ./dist/",
"build": "pnpm run clean && tsc",
"dev": "nodemon --watch src --ext ts --exec \"ts-node ./src/index.ts\"",
"build-cli": "pnpm run clean && tsc && shx chmod +x ./dist/cli.js",
"prepublishOnly": "pnpm run build-cli",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write ."
},
"author": "Wal33D",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"yargs": "^18.0.0",
"dotenv": "^16.4.5"
},
"optionalDependencies": {
"puppeteer": "^24.11.2"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"prettier": "^3.2.5",
"shx": "^0.4.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Wal33D/itchio-downloader.git"
},
"homepage": "https://github.com/Wal33D/itchio-downloader",
"packageManager": "pnpm@9.15.4"
}