-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
108 lines (108 loc) · 2.94 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-tv-player",
"author": "Lewis Hunt",
"description": "A React media player component for TV devices. With custom UI and arrow-key navigation, it can play a variety of URLs like file paths, HLS/DASH streams and even YouTube & Vimeo links directly. Packaged as an npm library for easy integration.",
"private": false,
"version": "1.1.8",
"type": "module",
"homepage": "https://lewhunt.github.io/react-tv-player",
"repository": "https://github.com/lewhunt/react-tv-player.git",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "npm run dev -- --port 3000 --host",
"build": "tsc && vite build",
"deploy": "gh-pages -d demo",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@noriginmedia/norigin-spatial-navigation": "^1.3.3",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-player": "^2.12.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"jsdom": "^22.1.0",
"sass": "^1.65.1",
"typescript": "^5.0.2",
"vite": ">=4.5.3",
"vite-plugin-dts": "^3.5.2",
"vitest": "^0.34.2"
},
"files": [
"dist"
],
"main": "./dist/react-tv-player.umd.js",
"module": "./dist/react-tv-player.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-tv-player.js",
"require": "./dist/react-tv-player.umd.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"web",
"front-end",
"react",
"react-component",
"player",
"component",
"youtube",
"vimeo",
"typescript",
"audio",
"video",
"media",
"hls",
"dash",
"streaming",
"video-player",
"smart-tv",
"soundcloud",
"youtube-video",
"tv",
"xbox",
"audio-player",
"tizen",
"firetv",
"webos",
"youtube-player",
"bigscreen",
"remote-control",
"spatial-navigation",
"ott",
"iptv",
"leanback",
"media-player",
"reacttvplayer",
"twitch",
"live-streaming"
]
}