-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.05 KB
/
package.json
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
{
"name": "baby-video",
"version": "0.0.1",
"description": "Baby's first HTML5 <video> element",
"private": true,
"type": "module",
"main": "./dist/baby-video.umd.cjs",
"module": "./dist/baby-video.js",
"exports": {
".": {
"import": "./dist/baby-video.js",
"require": "./dist/baby-video.umd.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MattiasBuelens/baby-video.git"
},
"keywords": [],
"author": "Mattias Buelens <mattias@buelens.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattiasBuelens/baby-video/issues"
},
"homepage": "https://github.com/MattiasBuelens/baby-video#readme",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write ."
},
"devDependencies": {
"media-chrome": "^4.2.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"dependencies": {
"@types/dom-webcodecs": "^0.1.13",
"mp4box": "^0.5.3"
}
}