harden consumer

This commit is contained in:
iPromKnight
2024-02-02 14:04:53 +00:00
parent 68edaba308
commit 8ad6cf731c
29 changed files with 693 additions and 1567 deletions

View File

@@ -1,11 +1,12 @@
{
"name": "consumer",
"version": "1.0.0",
"exports": "./index.js",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "node index.js",
"lint": "eslint . --ext .js"
"build": "node esbuild.js",
"dev": "tsx watch --ignore node_modules src/index.js",
"start": "node dist/index.cjs",
"lint": "eslint . --ext .ts,.js"
},
"author": "A Dude",
"license": "MIT",
@@ -23,12 +24,18 @@
"name-to-imdb": "^3.0.4",
"parse-torrent-title": "git://github.com/TheBeastLT/parse-torrent-title.git#022408972c2a040f846331a912a6a8487746a654",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.1",
"torrent-stream": "^1.2.1",
"user-agents": "^1.0.1444"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@types/stremio-addon-sdk": "^1.6.10",
"esbuild": "^0.19.12",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1"
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"tsx": "^4.7.0"
}
}