-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "online-ffmpeg",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"repository": "git@github.com:zeh/online-ffmpeg.git",
"author": "Zeh Fernando <zeh@zehfernando.com>",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"watch": "tsc && vite build --watch",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@types/node": "^20.5.0",
"classnames": "^2.5.1",
"preact": "^10.27.2",
"wouter-preact": "^2.12.2"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.2",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"postcss-mixins": "^12.1.2",
"postcss-nesting": "^13.0.2",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3",
"typescript": "^5.9.3",
"typescript-eslint": "^8",
"vite": "^4.5.14"
}
}