-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
116 lines (116 loc) · 4.3 KB
/
package.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@comfyorg/comfyui-electron",
"productName": "ComfyUI",
"repository": "github:comfy-org/electron",
"copyright": "Copyright © 2024 Comfy Org",
"version": "0.4.8",
"homepage": "https://comfy.org",
"description": "The best modular GUI to run AI diffusion models.",
"main": ".vite/build/main.cjs",
"packageManager": "[email protected]",
"type": "module",
"config": {
"frontendVersion": "1.7.10",
"comfyVersion": "0.3.11",
"managerCommit": "b4e52e65ec87978fc6294e82d55e1b91c5b02d55",
"uvVersion": "0.5.11"
},
"scripts": {
"clean": "rimraf .vite dist out",
"clean:uv": "rimraf assets/uv",
"clean:assets": "rimraf assets/.env assets/ComfyUI assets/python.tgz & yarn run clean:assets:git",
"clean:assets:git": "rimraf assets/ComfyUI/.git assets/ComfyUI/custom_nodes/ComfyUI-Manager/.git",
"clean:slate": "yarn run clean & yarn run clean:assets & rimraf node_modules",
"download:uv": "node scripts/downloadUV.js",
"download-frontend": "node scripts/downloadFrontend.js",
"make:frontend": "yarn run download-frontend",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"make": "yarn run vite:compile && electron-builder build --config=builder-debug.config.ts && yarn run verify:build",
"make:assets": "node scripts/makeComfy.js",
"make:nvidia": "yarn run make -- --nvidia",
"notarize": "node debug/notarize.js",
"package": "yarn run vite:compile && todesktop build --code-sign=false --async",
"postinstall": "node .husky/install.mjs",
"publish": "yarn run vite:compile && todesktop build",
"publish:staging": "yarn run vite:compile && todesktop build --config=./todesktop.staging.json --async",
"reset-install": "node scripts/resetInstall.js",
"sign": "node debug/sign.js",
"start": "vite build --watch",
"test:e2e": "npx playwright test",
"test:unit": "vitest run",
"test:update-snapshots": "npx playwright test --update-snapshots",
"todesktop:afterPack": "./scripts/todesktop/afterPack.cjs",
"todesktop:beforeInstall": "./scripts/todesktop/beforeInstall.cjs",
"typescript": "tsc -p tsconfig.build.json",
"verify:build": "node scripts/verifyBuild.js",
"vite:compile": "yarn run typescript && vite build && vite build --config vite.preload.config.ts",
"vite:types": "yarn run typescript && vite build --config vite.types.config.ts && node scripts/prepareTypes.js",
"release:types": "node scripts/releaseTypes.js",
"update:frontend": "node scripts/updateFrontend.js"
},
"devDependencies": {
"@electron/fuses": "^1.8.0",
"@electron/notarize": "^2.4.0",
"@electron/rebuild": "^3.7.1",
"@electron/windows-sign": "^1.1.3",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.47.2",
"@sentry/wizard": "^3.30.0",
"@todesktop/cli": "^1.9.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/adm-zip": "^0.5.5",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@types/tar": "6.1.13",
"@types/tmp": "^0.2.6",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"electron": "31.3.1",
"electron-builder": "^25.1.8",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"keywords": [],
"author": {
"name": "Comfy Org",
"email": "[email protected]"
},
"license": "GPL-3.0-only",
"dependencies": {
"@sentry/electron": "^5.4.0",
"@sentry/vite-plugin": "^2.22.6",
"@todesktop/runtime": "^1.6.4",
"adm-zip": "^0.5.15",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"electron-log": "^5.2.0",
"electron-store": "8.2.0",
"mixpanel": "^0.18.0",
"node-pty": "^1.0.0",
"systeminformation": "^5.24.8",
"tar": "^7.4.3",
"tmp": "^0.2.3",
"wait-on": "^8.0.1",
"yaml": "^2.6.0"
},
"lint-staged": {
"./**/*.{js,ts,tsx}": "prettier --write"
}
}