-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "react-streaming-availability",
"version": "0.1.4",
"description": "A React component library to display streaming availability data for movies and TV shows including deep links",
"homepage": "https://github.com/movieofthenight/react-streaming-availability",
"bugs": {
"url": "https://github.com/movieofthenight/react-streaming-availability/issues"
},
"license": "MIT",
"author": {
"name": "Cevat Barış Yılmaz"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/package-lock.json",
"/README.md"
],
"type": "module",
"repository": "github:movieofthenight/react-streaming-availability",
"scripts": {
"build": "tsc && npm run copy-css && typedoc",
"clean": "rm -rf dist && rm -rf docs",
"prepare": "npm run clean && npm run build",
"copy-css": "copyfiles -u 1 src/**/*.css dist/"
},
"dependencies": {
"clsx": "^2.1.1",
"server-only": "^0.0.1",
"streaming-availability": "^4.4.0"
},
"devDependencies": {
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"copyfiles": "^2.4.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
}
}