-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.74 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
{
"name": "layendanimator",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"package": "yarn && yarn ffmpeg:build && yarn build",
"package:dev": "yarn && yarn ffmpeg:build && yarn dev",
"svelte:dev": "vite dev",
"svelte:build": "vite build",
"ffmpeg:build": "(cd ./FFmpeg && ./configure --disable-shared --enable-static --enable-libx264 --enable-gpl --enable-libfdk_aac --enable-libopus --enable-nonfree && make) && (node ffmpegmove.js)",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss . && eslint . && (cd ./src-tauri && cargo fmt --check)",
"format": "prettier --write --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss . && (cd ./src-tauri && cargo fmt --all)",
"ncu": "ncu -u && yarn"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@svelte-put/clickoutside": "^3.0.2",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@tauri-apps/cli": "^1.5.14",
"@types/culori": "^2.1.0",
"@types/node": "^20.12.12",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"autoprefixer": "^10.4.19",
"daisyui": "^4.11.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"npm-check-updates": "^16.14.20",
"nprogress": "^0.2.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"svelte": "^4.2.17",
"svelte-fa": "^4.0.2",
"svelte-infinite-scroll": "^2.0.1",
"tailwindcss": "^3.4.3",
"tailwindcss-scoped-groups": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"type": "module",
"dependencies": {
"@consumet/extensions": "^1.6.0",
"@tauri-apps/api": "^1.5.6",
"axios-tauri-api-adapter": "0.2.1",
"culori": "^4.0.1",
"hls.js": "^1.5.8",
"isomorphic-dompurify": "^2.11.0",
"lru-cache": "^10.2.2",
"tauri-plugin-clipboard-api": "^0.6.10",
"tauri-plugin-context-menu": "^0.7.0",
"tauri-plugin-store-api": "https://github.com/tauri-apps/tauri-plugin-store",
"vidstack": "1.11.21"
},
"engines": {
"yarn": ">=1.22.19",
"node": ">=16.0.0"
}
}