-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "comfyui-api",
"version": "1.17.1",
"description": "Wraps comfyui to make it easier to use as a stateless web service",
"main": "dist/src/index.js",
"scripts": {
"test": "vitest run",
"unit-test": "vitest run test/utils.spec.ts",
"build": "tsc",
"build-binary": "./build-binary",
"postinstall": "npm install --cpu=wasm32 sharp"
},
"author": "Shawn Rushefsky",
"license": "MIT",
"devDependencies": {
"@anthropic-ai/sdk": "^0.26.1",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.13",
"@yao-pkg/pkg": "^6.1.0",
"minimist": "^1.2.8",
"svix": "^1.78.0",
"vitest": "^3.0.0"
},
"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",
"fastify": "^5.3.3",
"fastify-type-provider-zod": "^4.0.2",
"sharp": "^0.34.5",
"typescript": "^5.8.3",
"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"
}
}