-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.35 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.35 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
{
"name": "recordpanel",
"version": "1.0.0",
"description": "A powerful React SDK for screen recording with camera and audio support. Beautiful, draggable UI with real-time audio feedback.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles": "./dist/styles.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsx scripts/prerender.js",
"build:lib": "vite build --config vite.config.library.js",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"react",
"screen-recording",
"screen-capture",
"video-recording",
"camera",
"audio-recording",
"media-recorder",
"sdk",
"typescript",
"webcam",
"screen-share"
],
"author": "GeekyAnts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GeekyAnts/recordpanel.git"
},
"bugs": {
"url": "https://github.com/GeekyAnts/recordpanel/issues"
},
"homepage": "https://github.com/GeekyAnts/recordpanel#readme",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.554.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@radix-ui/react-dialog": "^1.1.15",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-syntax-highlighter": "^16.1.0",
"sonner": "^2.0.7",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.3.0"
}
}