This repository was archived by the owner on Feb 15, 2026. It is now read-only.
forked from jac3km4/comfyweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.42 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.42 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
{
"name": "comfyweb-v2",
"private": false,
"version": "2.0.0",
"type": "module",
"description": "Enhanced ComfyUI workflow interface with advanced features and professional UI",
"author": "virtaava",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/virtaava/comfywebv2.git"
},
"homepage": "https://virtaava.github.io/comfywebv2",
"keywords": [
"comfyui",
"workflow",
"ai",
"image-generation",
"stable-diffusion",
"svelte",
"typescript"
],
"scripts": {
"dev": "vite --host --port 5173 --open",
"dev:debug": "vite --host --port 5173 --open --logLevel error",
"dev:verbose": "vite --host --port 5173 --open --logLevel warn",
"build": "vite build",
"build:gh-pages": "vite build --base=/comfywebv2/",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json",
"type-check": "svelte-check --tsconfig ./tsconfig.json",
"deploy": "npm run build:gh-pages && npx gh-pages -d dist",
"analyze:dead-code": "node scripts/analyze-dead-code.cjs",
"ai-session-init": "node scripts/ai-session-init.cjs",
"ai-session-close": "node scripts/ai-session-close.cjs",
"ai-session-resume": "node scripts/ai-session-resume.cjs"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"depcheck": "^1.4.7",
"eslint": "^9.29.0",
"eslint-plugin-unused-imports": "^4.1.4",
"flowbite": "^2.5.1",
"flowbite-svelte": "^0.46.15",
"flowbite-svelte-icons": "^1.6.1",
"gh-pages": "^6.3.0",
"globals": "^16.2.0",
"install": "^0.13.0",
"madge": "^8.0.0",
"npm": "^10.8.3",
"rimraf": "^6.0.1",
"source-map-explorer": "^2.5.3",
"svelte": "^4.2.18",
"svelte-check": "^3.8.6",
"svelte-dnd-action": "^0.9.50",
"tailwindcss": "^3.4.9",
"ts-essentials": "^10.0.2",
"ts-unused-exports": "^11.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"unimported": "^1.31.0",
"vite": "^5.4.1",
"vite-bundle-analyzer": "^0.22.3",
"vite-plugin-inspect": "^0.8.9",
"vite-plugin-singlefile": "^2.0.2"
},
"dependencies": {
"@types/node": "^20.14.0",
"exifreader": "^4.23.3",
"remeda": "^2.12.0"
}
}