lidarr-true-singles/package.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2023-01-10 23:39:36 +00:00
{
"name": "lidarr-true-singles",
"version": "1.0.0",
2023-01-11 19:20:27 +00:00
"description": "Automatically unmonitor promotional singles from Lidarr.",
2023-01-10 23:39:36 +00:00
"main": "./src/app.js",
"engines": {
"node": ">=16.14.0"
},
"type": "module",
"scripts": {
"start": "node ./src/app.js",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src"
},
"repository": {
"type": "git",
2023-04-24 09:56:10 +00:00
"url": "git+https://git.chse.dev/chase/lidarr-true-singles.git"
2023-01-10 23:39:36 +00:00
},
"keywords": [],
"author": "Chase <c@chse.dev> (https://chse.dev)",
"contributors": [
""
],
"license": "MIT",
"bugs": {
2023-04-24 09:56:10 +00:00
"url": "https://git.chse.dev/chase/lidarr-true-singles/issues"
2023-01-10 23:39:36 +00:00
},
2023-04-24 09:56:10 +00:00
"homepage": "https://git.chse.dev/chase/lidarr-true-singles#readme",
2023-01-11 01:16:25 +00:00
"dependencies": {
2024-04-04 04:36:09 +00:00
"dotenv": "16.4.5",
"node-fetch": "3.3.2"
2023-01-11 01:16:25 +00:00
},
2023-01-10 23:39:36 +00:00
"devDependencies": {
2024-04-04 04:36:09 +00:00
"eslint": "8.57.0",
"eslint-config-chase": "1.0.11",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.3",
2024-04-04 04:36:09 +00:00
"eslint-plugin-unicorn": "52.0.0"
2023-01-10 23:39:36 +00:00
}
2023-04-24 09:56:10 +00:00
}