-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bit-finder",
"version": "0.0.4",
"author": "Francesco Virga @francescov1",
"main": "./dist/index.js",
"bin": {
"bf": "./dist/index.js"
},
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"build": "tsc",
"prepack": "rm -rf dist && npm run build",
"postinstall": "patch-package"
},
"files": [
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"type": "module",
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"axios": "^0.21.1",
"bonjour-browser": "^1.0.1",
"clipboardy": "^2.3.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"imdb-api": "^4.0.3",
"inquirer-autocomplete-standalone": "^0.8.1",
"patch-package": "^6.4.7",
"play-on-apple-tv": "^1.1.1",
"rarbg-api": "^1.1.4",
"terminal-image": "^1.2.1",
"torrent-search-api": "^2.1.1",
"transmission-promise": "^1.1.4",
"webtorrent-cli": "^3.2.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/lodash": "^4.14.167",
"@types/torrent-search-api": "^2.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.5.4",
"@typescript-eslint/parser": "^5.5.4",
"eslint": "^7.13.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"lodash": "^4.17.20",
"prettier": "^2.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=9.0.0"
},
"homepage": "https://github.com/inter-ops/bit-finder",
"keywords": [
"torrent",
"youtube",
"youtube-dl",
"webtorrent",
"download",
"stream"
],
"license": "MIT",
"bugs": "https://github.com/inter-ops/bit-finder/issues",
"repository": "bit-finder",
"types": "dist/index.d.ts",
"lint-staged": {
"*.{js,ts}": [
"npx prettier --write",
"eslint --cache --fix"
]
}
}