-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.82 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
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
{
"name": "samplebyte",
"version": "0.1.0",
"main": "dist-electron/main/index.js",
"description": "An easy sample tool",
"author": "RubenGlez",
"license": "MIT",
"private": true,
"packageManager": "pnpm@11.15.1",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"type": "module",
"scripts": {
"seed": "bash scripts/seed.sh",
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:publish": "tsc && vite build && electron-builder --publish always",
"postinstall": "electron-rebuild -f -w better-sqlite3",
"preview": "vite preview",
"fetch:stem-model": "node scripts/fetch-stem-model.mjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"tsc": "tsc --noEmit",
"prettier:fix": "prettier --write ./src",
"prettier:check": "prettier --check ./src",
"release": "node scripts/tag.mjs",
"release:minor": "node scripts/tag.mjs minor",
"release:major": "node scripts/tag.mjs major"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.3.0",
"better-sqlite3": "^12.10.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"electron-updater": "^6.8.9",
"fluent-ffmpeg": "^2.1.2",
"lucide-react": "^1.14.0",
"posthog-js": "^1.396.6",
"posthog-node": "^5.39.4",
"tailwind-merge": "^3.6.0",
"wavesurfer.js": "^7.7.1",
"zustand": "^5.0.13"
},
"devDependencies": {
"@electron/rebuild": "^4.0.4",
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.16",
"electron": "41.6.1",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"postcss": "^8.5.23",
"prettier": "^3.2.2",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^4.1.9"
},
"optionalDependencies": {
"@ffmpeg-installer/darwin-arm64": "4.1.5",
"@ffmpeg-installer/darwin-x64": "4.1.0",
"@ffmpeg-installer/win32-x64": "4.1.0"
}
}