-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 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
{
"name": "playstack",
"description": "A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Vimeo, Bunny Stream and etc..",
"repository": {
"type": "git",
"url": "https://github.com/microdotcompany/playstack"
},
"bugs": {
"url": "https://github.com/microdotcompany/playstack/issues"
},
"homepage": "https://github.com/microdotcompany/playstack#readme",
"license": "MIT",
"private": false,
"version": "2.0.12",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"build:demo": "vite build --config vite.config.demo.ts",
"lint": "eslint .",
"preview": "vite preview"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18 || ^19",
"react": "^17.0.2 || ^18 || ^19",
"react-dom": "^17.0.2 || ^18 || ^19"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-slider": "^1.3.5",
"@tabler/icons-react": "^2.47.0",
"get-video-id": "^4.1.7",
"screenfull": "^6.0.2"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^24.0.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.3",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4"
},
"keywords": [
"react",
"player",
"media",
"youtube",
"vimeo",
"bunny",
"react-component"
]
}