forked from itsKaynine/comfy-ui-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "comfy-client-workflows",
"version": "0.2.4",
"packageManager": "pnpm@7.5.0",
"engines": {
"node": ">=18.0.0"
},
"description": "WebSockets API client for ComfyUI with a Workflow wrapper",
"author": "Yanko Oliveira <yanko.oliveira@gmail.com> (forked from a lib by Punnawut Khowkittipaiboon <me@itskaynine.com>)",
"license": "MIT",
"homepage": "https://github.com/yankooliveira/comfy-client-workflows",
"repository": {
"type": "git",
"url": "git+https://github.com/yankooliveira/comfy-client-workflows.git"
},
"bugs": "https://github.com/yankooliveira/comfy-client-workflows/issues",
"keywords": [
"comfy-ui",
"comfy-ui node",
"comfy-ui node API",
"comfy-ui API",
"comfy-ui sdk",
"comfy-ui-node",
"comfy-ui-node-api",
"comfy-ui-client",
"comfy-ui-sdk"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"dev": "npm run build --watch",
"lint": "eslint .",
"prettier": "prettier --config .prettierrc --write ./src"
},
"dependencies": {
"pino": "^8.21.0",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^18.19.54",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"tsup": "^7.2.0",
"typescript": "~5.0"
}
}