-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.68 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
{
"name": "inline-studio",
"version": "1.0.38",
"description": "An experimentation layer for visual artists: build, iterate, and share generative pipelines on your own ComfyUI.",
"author": "Inline Studio",
"license": "MIT",
"main": "./out/main/index.cjs",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"package": "npm run build && electron-builder",
"package:mac": "npm run build && electron-builder --mac --arm64 --x64",
"package:win": "npm run build && electron-builder --win",
"package:linux": "npm run build && electron-builder --linux",
"start": "electron-vite preview",
"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",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write \"**/*.{ts,tsx,css,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"postinstall": "electron-builder install-app-deps",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.2",
"@xyflow/react": "^12.11.0",
"archiver": "^7.0.1",
"better-sqlite3": "^11.8.1",
"electron-updater": "^6.8.9",
"extract-zip": "^2.0.1",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"react-resizable-panels": "^2.1.9",
"ws": "^8.18.0"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"@eslint/js": "^9.18.0",
"@types/archiver": "^6.0.4",
"@types/better-sqlite3": "^7.6.12",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"konva": "^9.3.18",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-konva": "^19.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"zustand": "^5.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
}
}