forked from SaladTechnologies/comfyui-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "comfyui-api",
"version": "1.13.5",
"description": "Wraps comfyui to make it easier to use as a stateless web service",
"main": "/src/index.js",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch ./src/index.ts\"",
"full-test": "mocha --require ts-node/register --timeout=0 test/*.spec.ts",
"test": "mocha --require ts-node/register --timeout=0 test/core.spec.ts",
"build": "tsc",
"build-binary": "./build-binary",
"postinstall": "npm install --cpu=wasm32 sharp"
},
"author": "Shawn Rushefsky, forked and customized by musemod",
"license": "MIT",
"devDependencies": {
"@anthropic-ai/sdk": "^0.26.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react-swc": "^4.2.2",
"@yao-pkg/pkg": "^6.1.0",
"concurrently": "^9.2.1",
"earl": "^1.3.0",
"minimist": "^1.2.8",
"mocha": "^11.0.1",
"svix": "^1.78.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vite": "^7.2.4"
},
"bin": {
"comfyui-api": "dist/src/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.820.0",
"@azure/identity": "^4.13.0",
"@azure/storage-blob": "^12.28.0",
"@fastify/swagger": "^9.5.0",
"@fastify/swagger-ui": "^5.2.2",
"@smithy/node-http-handler": "^4.0.5",
"dotenv": "^17.3.1",
"fastify": "^5.3.3",
"fastify-type-provider-zod": "^4.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.6",
"react-router-dom": "^7.9.6",
"sharp": "^0.34.5",
"undici": "^7.10.0",
"ws": "^8.18.2",
"yaml": "^2.8.1",
"zod": "^3.25.36"
},
"pkg": {
"targets": [
"node20-linux-x64"
],
"outputPath": "bin",
"public": true
},
"engines": {
"node": ">=20.18.1"
}
}