-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "react-video-corner",
"version": "1.2.0",
"description": "A customizable React component for displaying videos in the corner of your screen with expand/collapse functionality",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build --mode library && tsc --project tsconfig.lib.json",
"build:lib": "vite build --mode library",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"demo:dev": "cd demo && npm run dev",
"demo:build": "cd demo && npm run build",
"demo:install": "cd demo && npm install"
},
"keywords": [
"react",
"video",
"corner",
"youtube",
"component",
"ui",
"typescript"
],
"author": "Golam Kibria",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/g-k-shuvo/react-video-corner.git"
},
"bugs": {
"url": "https://github.com/g-k-shuvo/react-video-corner/issues"
},
"homepage": "https://g-k-shuvo.github.io/react-video-corner",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"tsx": "^3.14.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.3.0",
"rollup": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"@rollup/plugin-terser": "^0.4.4"
}
}