-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "scp-log",
"version": "0.1.0",
"private": true,
"main": "main/index.js",
"description": "SCP Log",
"author": "Kagari",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev-electron": "concurrently -n \"NEXT,ELECTRON\" -c \"yellow,blue\" --kill-others \"next dev\" \"electron .\"",
"pack-app": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"type-check": "tsc -p ./tsconfig.json"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@types/youtube": "^0.0.50",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"electron-is-dev": "^3.0.1",
"electron-next": "^3.1.5",
"electron-serve": "^1.3.0",
"ffmpeg-static": "^5.2.0",
"ffmpeg-static-electron": "^2.0.3",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "https://github.com/fluent-ffmpeg/node-fluent-ffmpeg/tree/843e57fe8d64ac6faded798a6ec19409221e70fb",
"kuromoji": "^0.1.2",
"lucide-react": "^0.363.0",
"next": "14.1.4",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-resizable-panels": "^2.0.16",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.0",
"vaul": "^0.9.0",
"yarn": "^1.22.21",
"youtubei.js": "^9.1.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/gtag.js": "^0.0.19",
"@types/kuromoji": "^0.1.3",
"@types/node": "^20",
"@types/node-fetch": "^2.6.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"build": {
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json"
]
}
}