File size: 532 Bytes
c7d731b |
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 |
{
"name": "your-tv-streams",
"version": "1.0.0",
"description": "A Stremio add-on for streaming TV series.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"stremio",
"addon",
"stream",
"tv",
"series"
],
"author": "Your Name",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"stremio-addon-sdk": "^1.2.0"
}
}
|