forked from Viren070/AIOStreams
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.32 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.32 KB
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
27
28
29
30
31
32
33
34
35
{
"name": "aiostreams",
"version": "1.22.0",
"description": "AIOStreams consolidates multiple Stremio addons and debrid services into a single, easily configurable addon. It allows highly customisable filtering, sorting, and formatting of results and supports proxying all your streams through MediaFlow Proxy or StremThru for improved compatibility and IP restriction bypassing.",
"main": "dist/index.js",
"scripts": {
"test": "npm run test --workspaces",
"release": "commit-and-tag-version",
"format": "prettier --write .",
"metadata": "node scripts/generateMetadata.js",
"build": "npm -w packages/core run build && npm -w packages/server run build && npm -w packages/frontend run build",
"build:watch": "tsc --build --watch",
"start": "node packages/server/dist/server",
"start:addon": "npm run start",
"start:dev": "cross-env NODE_ENV=development tsx watch packages/server/src/server.ts",
"start:addon:dev": "npm run start:dev",
"start:frontend:dev": "npm -w packages/frontend run dev"
},
"author": "Viren070",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"cross-env": "^7.0.3",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^2.1.5",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=20.0.0"
}
}