-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "libav-stream-info-wasm",
"version": "2.1.0",
"description": "wasm bindings for libav to extract audio (e.g. ID3) tags and duration",
"repository": {
"type": "git",
"url": "git+https://github.com/streamonkey/libav-stream-info-wasm.git"
},
"bugs": {
"url": "https://github.com/streamonkey/libav-stream-info-wasm/issues"
},
"homepage": "https://github.com/streamonkey/libav-stream-info-wasm#readme",
"keywords": [
"ffprobe",
"WebAssembly",
"wasm",
"ffmpeg",
"libav",
"ID3",
"Metadata",
"audio"
],
"author": "Wilhelm Bartel <[email protected]>",
"license": "MIT",
"exports": {
"types": "./dist/runtime/browser-vite.d.mts",
"default": "./dist/browser.mjs"
},
"types": "./dist/runtime/browser-vite.d.mts",
"browser": "./dist/browser.mjs",
"scripts": {
"build": "npm run vite && npm run tsc",
"vite": "vite build",
"tsc": "tsc -p tsconfig.json --emitDeclarationOnly"
},
"devDependencies": {
"@types/emscripten": "^1.39.6",
"@types/node": "^18.11.18",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}