-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 976 Bytes
/
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
{
"name": "dockarr",
"version": "1.0.15",
"main": "cli.ts",
"description": "An opinionated CLI tool for installing and managing *arr applications, Plex Media Server, and various other services that make up a HTPC (Home Theater Personal Computer).",
"scripts": {
"build": "npx tsc",
"prepublish": "npx tsc"
},
"bin": {
"dockarr": "bin/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdesive/dockarr.git"
},
"homepage": "https://dockarr.com",
"keywords": [
"dockarr",
"docker",
"plex",
"*arr",
"htpc",
"cli",
"command line tool"
],
"author": "Jack DeSive",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/yaml": "^1.9.7",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "4.1.2",
"commander": "^10.0.0",
"docker-compose": "^0.23.19",
"readline": "^1.3.0",
"yaml": "^2.2.2"
}
}