-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.54 KB
/
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
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
{
"name": "apkmirror-downloader",
"version": "2.0.8",
"description": "Download apk from apkmirror.com with ease",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"apkmd": "dist/cli.js"
},
"keywords": [
"apkmirror",
"downloader",
"cli"
],
"author": "tanishqmanuja",
"license": "MIT",
"homepage": "https://github.com/tanishqmanuja/apkmirror-downloader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tanishqmanuja/apkmirror-downloader.git"
},
"packageManager": "[email protected]",
"scripts": {
"build": "bun scripts/build.ts",
"compile": "bun scripts/compile.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type:check": "tsc --noEmit",
"lint": "bun type:check && bun format:check",
"release": "release-it"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/bun": "^1.1.6",
"@types/cheerio": "^0.22.35",
"@types/yargs": "^17.0.32",
"bun-plugin-dts": "^0.2.3",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"ts-pattern": "^5.2.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
}
}