-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 791 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 791 Bytes
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
{
"name": "videorecorderjs",
"version": "3.1.0",
"description": "Modern HTML5 Video & Screen Recording Library",
"type": "module",
"main": "./dist/videorecorder.umd.js",
"module": "./dist/videorecorder.es.js",
"exports": {
".": {
"import": "./dist/videorecorder.es.js",
"require": "./dist/videorecorder.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imalhasaranga/VideoRecorderJs.git"
},
"keywords": [
"webrtc",
"html5",
"screen-recording",
"mediarecorder",
"video",
"audio",
"record"
],
"author": "Imal Hasaranga",
"license": "MIT",
"devDependencies": {
"vite": "^5.0.0"
}
}