-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.28 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.28 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
90
91
92
93
94
95
96
{
"name": "comfyui-desktop-2",
"version": "0.4.4",
"description": "ComfyUI Desktop 2.0",
"author": {
"name": "Jedrzej Kosinski",
"email": "kosinkadink@users.noreply.github.com"
},
"repository": "github:Comfy-Org/ComfyUI-Desktop-2.0-Beta",
"license": "MIT",
"homepage": "https://github.com/Comfy-Org/ComfyUI-Desktop-2.0-Beta",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.28.1",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "pnpm run typecheck && electron-vite build",
"start": "electron-vite preview",
"postinstall": "node ./scripts/postinstall.mjs",
"todesktop:beforeInstall": "./scripts/todesktop-beforeInstall.cjs",
"todesktop:afterPack": "./scripts/todesktop-afterPack.cjs",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck:e2e": "tsc --noEmit -p tsconfig.e2e.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web && pnpm run typecheck:e2e",
"build:unpack": "pnpm run build && electron-builder --dir",
"build:win": "pnpm run build && electron-builder --win",
"build:mac": "pnpm run build && electron-builder --mac",
"build:linux": "pnpm run build && electron-builder --linux",
"datadog:sourcemaps:upload": "node ./scripts/upload-datadog-sourcemaps.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,vue}\" \"*.{json,ts,yml}\"",
"format:check": "prettier --check \"src/**/*.{ts,vue}\" \"*.{json,ts,yml}\"",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:macos": "playwright test --project=macos",
"test:e2e:windows": "playwright test --project=windows",
"test:e2e:linux": "playwright test --project=linux",
"test:watch": "vitest",
"prepare": "node ./scripts/prepare.mjs"
},
"dependencies": {
"7zip-bin": "^5.2.0",
"@datadog/browser-rum": "6.28.1",
"@todesktop/runtime": "^2.1.3",
"electron-updater": "^6.7.3",
"smol-toml": "^1.6.0"
},
"devDependencies": {
"@datadog/datadog-ci": "^5.9.0",
"@eslint/js": "^10.0.1",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.8",
"@types/node": "^22.19.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^13.5.0",
"electron": "40.4.1",
"electron-builder": "^26.7.0",
"electron-vite": "^5.0.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.3.0",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lucide-vue-next": "^0.525.0",
"pinia": "^3.0.3",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.8",
"tar": "^7.5.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue": "^3.5.25",
"vue-eslint-parser": "^10.4.0",
"vue-i18n": "^11.1.6",
"vue-tsc": "^3.1.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"electron-winstaller",
"esbuild"
]
}
}