-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 KB
/
package.json
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
{
"author": "Movie of the Night",
"bugs": "https://github.com/movieofthenight/ts-streaming-availability/issues",
"description": "Streaming Availability API allows getting streaming availability information of movies and series; and querying the list of available shows on streaming services such as Netflix, Disney+, Apple TV, Max and Hulu across 60 countries!",
"devDependencies": {
"@types/node": "^22.7.4",
"esbuild": "^0.24.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^4.0"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://www.movieofthenight.com/about/api",
"keywords": [
"streaming",
"streaming-availability",
"movie",
"movies",
"series",
"netflix",
"disney",
"disney+",
"hbo-max",
"hbo",
"max",
"hulu",
"apple-tv",
"prime-video",
"amazon-prime-video",
"amazon-prime",
"api"
],
"license": "MIT",
"main": "./dist/index.js",
"name": "streaming-availability",
"repository": {
"type": "git",
"url": "https://github.com/movieofthenight/ts-streaming-availability.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "ts-node test/test.ts"
},
"typings": "./dist/index.d.ts",
"version": "v4.4.0"
}