-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "@zinigor/comfyui-es-wrapper",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./editor": {
"types": "./dist/types/editor.d.ts",
"import": "./dist/editor.js",
"require": "./dist/editor.cjs"
},
"./components": {
"types": "./dist/types/components.d.ts",
"import": "./dist/components.js",
"require": "./dist/components.cjs"
}
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"@comfyorg/litegraph": "^0.7.0"
},
"dependencies": {
"@comfyorg/comfyui-frontend": "github:Comfy-Org/ComfyUI_frontend",
"@comfyorg/litegraph": "^0.17.2",
"@litegraph-ts/core": "^0.2.27",
"@litegraph-ts/nodes-basic": "^0.2.1",
"pinia": "^3.0.3",
"react": "^19.1.1",
"vue": "^3.5.18"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/lodash": "^4.17.20",
"@types/node": "^22.17.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-dts": "^4.5.4"
}
}