forked from manybothans/plex-requester-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "plex-requester-collections",
"version": "1.2.1",
"description": "Node app to automatically create Plex Collections for content requested by users in Overseerr.",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"dockerize": "tsc && docker build . -t manybothans/plex-requester-collections",
"docker-publish": "tsc && docker buildx build --push --platform linux/arm64/v8,linux/amd64,linux/ppc64le,linux/arm/v7,linux/s390x --tag manybothans/plex-requester-collections:latest ."
},
"keywords": [
"plex",
"overseerr",
"homelab",
"selfhost"
],
"author": "Jess Latimer",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/lodash": "^4.14.194",
"@types/node": "^20.1.3",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"typescript": "^5.0.4"
}
}