webstreamr-github/package.json
2025-09-13 20:28:43 +02:00

76 lines
2 KiB
JSON

{
"name": "webstreamr",
"description": "Provides HTTP URLs from streaming websites.",
"version": "0.51.0",
"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",
"test:update-fixtures": "TEST_UPDATE_FIXTURES=1 npm run test",
"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": {
"@keyv/sqlite": "^4.0.5",
"@types/jsdom": "^21.1.7",
"async-mutex": "^0.5.0",
"bytes": "^3.1.2",
"cacheable": "^2.0.0",
"cheerio": "^1.0.0",
"express": "^5.1.0",
"fetch-socks": "^1.3.2",
"http-cache-semantics": "^4.2.0",
"jsdom": "^26.1.0",
"minimatch": "^10.0.3",
"randomstring": "^1.3.1",
"rot13-cipher": "^1.0.0",
"slugify": "^1.6.6",
"tough-cookie": "^6.0.0",
"undici": "^7.10.0",
"unpacker": "^1.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^5.0.0",
"@tsconfig/node22": "^22.0.2",
"@types/bytes": "^3.1.5",
"@types/express": "^5.0.1",
"@types/http-cache-semantics": "^4.0.4",
"@types/jest": "^30.0.0",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^22.15.3",
"@types/randomstring": "^1.3.0",
"@types/stremio-addon-sdk": "^1.6.11",
"babel-jest": "^30.0.0",
"eslint": "^9.26.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.0.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
}