-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.59 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@streamspark/react-video-player",
"version": "1.1.1",
"type": "module",
"description": "A customizable React video player with no dependencies",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"engines": {
"node": ">=16",
"npm": ">=7"
},
"files": [
"dist/*.js",
"dist/*.css",
"dist/*.d.ts",
"README.md"
],
"scripts": {
"dev": "vite",
"start:demo": "vite",
"build": "tsc && vite build",
"build:package": "npx rollup -c rollup.config.mjs",
"preview": "vite preview",
"prepublishOnly": "npm run build:package"
},
"keywords": [
"react",
"video player",
"youtube-style player",
"html5 video",
"react video",
"custom component",
"media player",
"react player",
"video",
"audio",
"youtube",
"react component",
"subtitles",
"thumbnail preview",
"keyboard shortcuts",
"typescript",
"accessible",
"responsive",
"lightweight",
"open source",
"react player alternative"
],
"author": "Arun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arun59ay/react-video-player.git"
},
"bugs": {
"url": "https://github.com/arun59ay/react-video-player/issues"
},
"homepage": "https://github.com/arun59ay/react-video-player#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^24.0.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^6.0.3",
"tailwindcss": "^3.4.1",
"tslib": "^2.8.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2"
}
}