webstreamr-github/package.json
2025-05-16 15:33:12 +00:00

68 lines
1.8 KiB
JSON

{
"name": "webstreamr",
"description": "Provides HTTP URLs from streaming websites.",
"version": "0.15.2",
"type": "commonjs",
"scripts": {
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
"build": "rm -rf ./dist && tsc",
"dev": "nodemon src/index.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "node dist/index.js",
"test": "jest",
"ci": "npm run lint && npm run analyse && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/webstreamr/webstreamr.git"
},
"keywords": [
"stremio",
"stream"
],
"author": "WebStreamr",
"license": "MIT",
"bugs": {
"url": "https://github.com/webstreamr/webstreamr/issues"
},
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"axios-cache-interceptor": "^1.8.0",
"axios-retry": "^4.5.0",
"bytes": "^3.1.2",
"cheerio": "^1.0.0",
"country-emoji": "^1.5.6",
"express": "^5.1.0",
"randomstring": "^1.3.1",
"slugify": "^1.6.6",
"unpacker": "^1.0.1",
"user-agents": "^1.1.536",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/bytes": "^3.1.5",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^22.15.3",
"@types/randomstring": "^1.3.0",
"@types/stremio-addon-sdk": "^1.6.11",
"@types/user-agents": "^1.0.4",
"axios-mock-adapter": "^2.1.0",
"babel-jest": "^29.7.0",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
},
"private": true
}