-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "mkv-extract",
"version": "2.0.0",
"description": "Extract MKV tracks and attachments directly from the browser",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qgustavor/mkv-extract.git"
},
"keywords": [
"mkv",
"browser"
],
"author": "qgustavor (https://qgustavor.tk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qgustavor/mkv-extract/issues"
},
"homepage": "https://github.com/qgustavor/mkv-extract#readme",
"type": "module",
"dependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.8.3",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@sveltekit-i18n/base": "^1.3.7",
"@sveltekit-i18n/parser-icu": "^1.0.8",
"async-mutex": "^0.5.0",
"carbon-components-svelte": "^0.85.0",
"carbon-icons-svelte": "^12.6.0",
"filenamify": "^6.0.0",
"streamsaver": "^2.0.6",
"svelte": "^4.2.19",
"svelte-check": "^3.6.9",
"svelte-local-storage-store": "^0.6.4",
"sveltekit-i18n": "^2.4.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.4.6",
"vite-plugin-toml": "^0.7.0"
},
"devDependencies": {
"@prgm/sveltekit-progress-bar": "^2.0.0"
}
}