-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.02 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
46
47
48
49
50
{
"name": "videotype",
"version": "1.0.0",
"description": "Get video size, duration and type from url or File",
"scripts": {
"build": "tsc index.ts --declaration"
},
"module": "index.js",
"main": "index.js",
"jsnext:main": "index.js",
"umd:main": "index.js",
"source": "index.ts",
"typings": "index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.js",
"default": "./index.js"
},
"repository": "https://github.com/Mfuns-cn/videoType.git",
"keywords": [
"video",
"type",
"extension",
"html5",
"blob",
"mediastream",
"mediatrack",
"duration",
"length",
"size",
"binary"
],
"homepage": "https://github.com/Mfuns-cn/videoType.git",
"authors": [
"Amoyensis <[email protected]>"
],
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"README.md",
"package.json"
],
"devDependencies": {
"@types/node": "^20.5.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
}
}