-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.2 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@omss/framework",
"version": "1.1.13",
"description": "Official OMSS backend framework - Multi-provider streaming media aggregation framework with auto-discovery",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
">=4.1": {
"*": [
"dist/*"
]
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && tsc && tsc-alias",
"dev": "tsx watch examples/basic-server.ts",
"clean": "npx rimraf dist",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"omss",
"streaming",
"media",
"backend",
"rest-api",
"video",
"movies",
"tv-shows",
"aggregation",
"tmdb",
"hls",
"dash",
"provider",
"scraper",
"framework"
],
"author": "OMSS Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omss-spec/framework.git"
},
"bugs": {
"url": "https://github.com/omss-spec/framework/issues"
},
"homepage": "https://github.com/omss-spec/framework#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"fastify": "^5.7.1",
"ioredis": "^5.9.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"prettier": "^3.8.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}