-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
111 lines (111 loc) · 4.2 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
{
"name": "@comfyorg/comfyui-electron",
"productName": "ComfyUI",
"repository": "github:comfy-org/electron",
"copyright": "Copyright © 2024 Comfy Org",
"version": "0.3.35",
"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.6.1",
"comfyVersion": "0.3.7",
"managerCommit": "52b6e4b2eb6481333b29556788f28633e73bd0a9",
"uvVersion": "0.5.8"
},
"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 --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"make": "yarn run vite:compile && electron-builder build --config=builder-debug.config.ts",
"make:assets:amd": "node scripts/makeComfy.js amd",
"make:assets:cpu": "node scripts/makeComfy.js cpu",
"make:assets:macos": "node scripts/makeComfy.js macos",
"make:assets:nvidia": "node scripts/makeComfy.js nvidia",
"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 --async",
"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": "node ./scripts/launchdev.js",
"test:e2e": "npx playwright test",
"test:unit": "jest --config jest.config.cjs",
"test:update-snapshots": "npx playwright test --update-snapshots",
"todesktop:afterPack": "./scripts/todesktop/afterPack.cjs",
"todesktop:beforeInstall": "./scripts/todesktop/beforeInstall.cjs",
"typescript": "yarn run tsc",
"vite:compile": "vite build --config vite.main.config.ts && vite build --config vite.preload.config.ts",
"vite:types": "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",
"@playwright/test": "^1.47.2",
"@sentry/wizard": "^3.30.0",
"@todesktop/cli": "^1.9.7",
"@types/adm-zip": "^0.5.5",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/tar": "6.1.13",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"electron": "31.3.1",
"electron-builder": "^25.1.8",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.0.0",
"typescript": "~5.5.4",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.3.0"
},
"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",
"node-pty": "^1.0.0",
"systeminformation": "^5.23.5",
"tar": "^7.4.3",
"wait-on": "^8.0.1",
"yaml": "^2.6.0"
},
"lint-staged": {
"./**/*.{js,ts,tsx}": "prettier --write"
}
}