-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.22 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
{
"name": "footage-organiser",
"productName": "Footage Organiser",
"version": "1.2.1",
"license": "GPL-3.0",
"copyright": "Copyright © 2021 ${author}",
"description": "Automate the transfer of footage and mirroring of drives.",
"main": "./out/main/main.js",
"author": "Drew Loynes",
"homepage": "https://github.com/drewloynes/FootageOrganiser",
"type": "module",
"repository": "github:drewloynes/FootageOrganiser",
"scripts": {
"format": "prettier --write .",
"lint": "pnpm eslint .",
"lint:fix": "pnpm eslint . --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "node ./scripts/setProd.mjs && electron-vite preview",
"dev": "node ./scripts/setDev.mjs && electron-vite dev",
"build": "node ./scripts/setProd.mjs && npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "node ./scripts/setProd.mjs && npm run build && electron-builder --dir",
"build:win": "node ./scripts/setProd.mjs && npm run build && electron-builder --win",
"build:mac": "node ./scripts/setProd.mjs && electron-vite build && electron-builder --mac",
"publish": "electron-builder --publish always"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/utils": "^4.0.0",
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-alert-dialog": "^1.1.17",
"@radix-ui/react-checkbox": "^1.3.5",
"@radix-ui/react-collapsible": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-progress": "^1.1.10",
"@radix-ui/react-scroll-area": "^1.2.12",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tooltip": "^1.2.10",
"class-variance-authority": "^0.7.1",
"crc32-stream": "^7.0.1",
"lucide-react": "^1.21.0",
"react-hook-form": "^7.80.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@eslint/config-helpers": "^0.6.0",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^26.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"clsx": "^2.1.1",
"electron": "^42.4.1",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"eslint": "^10.5.0",
"framer-motion": "^12.40.0",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.0",
"source-map-support": "^0.5.21",
"systeminformation": "^5.31.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vite": "^8.0.16",
"winston": "^3.19.0"
}
}