-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.21 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
{
"name": "trainkit",
"productName": "TrainKit",
"version": "1.2.1",
"description": "A dataset preparation toolkit for AI image training",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"typecheck": "tsc --noEmit",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "vitest run",
"test:backend": "uv run --directory backend --locked pytest",
"lint:backend": "uv run --directory backend --locked ruff check .",
"format:backend": "uv run --directory backend --locked ruff format --check .",
"verify": "npm run lint && npm run typecheck && npm run test:frontend && npm run lint:backend && npm run format:backend && npm run test:backend",
"verify:package": "node scripts/verify-package.mjs"
},
"engines": {
"node": ">=22.12.0"
},
"keywords": [],
"author": {
"name": "LightCyan01",
"email": "29302715+LightCyan01@users.noreply.github.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.2",
"@electron-forge/maker-zip": "^7.11.2",
"@electron-forge/plugin-fuses": "^7.11.2",
"@electron-forge/plugin-vite": "^7.11.2",
"@electron/fuses": "^1.0.0",
"@tailwindcss/postcss": "^4.3.2",
"@tailwindcss/vite": "^4.3.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.4.23",
"electron": "43.1.1",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"react": "^19.2.7",
"react-compare-slider": "^3.1.0",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"ws": "^8.21.1"
},
"overrides": {
"tar": "7.5.20",
"tmp": "0.2.7"
}
}