-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "comfy-figjam-plugin",
"version": "0.1.0",
"private": true,
"description": "FigJam plugin to browse, run, and insert ComfyUI Cloud workflow results onto the canvas.",
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"dependencies": {
"@create-figma-plugin/ui": "^4.0.3",
"@create-figma-plugin/utilities": "^4.0.3",
"preact": "^10.29.7",
"three": "^0.185.1"
},
"devDependencies": {
"@create-figma-plugin/build": "^4.0.3",
"@figma/plugin-typings": "^1.130.0",
"@types/three": "^0.185.1",
"typescript": "^5.7.3"
},
"figma-plugin": {
"editorType": ["figjam"],
"id": "1657542403361139581",
"name": "ComfyUI for FigJam",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"relaunchButtons": {
"edit": {
"name": "Edit with ComfyUI",
"main": { "src": "src/main.ts", "handler": "edit" },
"ui": "src/ui.tsx"
}
},
"documentAccess": "dynamic-page",
"permissions": ["currentuser"],
"networkAccess": {
"allowedDomains": ["https://proxy-green-ten-69.vercel.app"],
"devAllowedDomains": ["http://localhost:3000"],
"reasoning": "Calls the ComfyUI Cloud proxy to list and run the user's workflows and fetch generated assets."
}
}
}