-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
76 lines (76 loc) · 1.63 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
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
{
"name": "@diffusion-studio/ffmpeg-js",
"private": false,
"version": "0.2.3",
"description": "FFmpeg.js - Use FFmpeg in the browser powered by WebAssembly",
"type": "module",
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "[email protected]:diffusion-studio/ffmpeg-js.git"
},
"module": "./dist/ffmpeg-js.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/ffmpeg-js.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"ffmpeg",
"webassembly",
"emscripten",
"audio",
"browser",
"video",
"video processing",
"audio processing",
"wasm",
"muxer",
"demuxer",
"codecs",
"encoding",
"decoding",
"mp3",
"wav",
"flac",
"mkv",
"mov",
"ogg",
"hevc",
"h264",
"h265",
"quicktime",
"matroska",
"editing",
"cutting"
],
"bugs": {
"url": "https://github.com/diffusion-studio/ffmpeg-js/issues"
},
"homepage": "https://github.com/diffusion-studio/ffmpeg-js#readme",
"scripts": {
"dev": "vite",
"build": "rm -r -f ./dist && tsc && vite build",
"preview": "vite preview",
"test": "npx playwright test --project=chromium",
"prettier": "npx prettier --write ./src ./tests",
"tarball": "npm view @diffusion-studio/ffmpeg-js dist.tarball"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"prettier": "2.8.8",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^3.0.0-beta.3"
}
}