-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "comfyui-api",
"version": "1.6.1",
"description": "Wraps comfyui to make it easier to use as a stateless web service",
"main": "dist/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build-binary": "./build-binary"
},
"author": "Shawn Rushefsky",
"license": "MIT",
"devDependencies": {
"@anthropic-ai/sdk": "^0.26.1",
"@types/chokidar": "^2.1.3",
"@types/node": "^20.12.7",
"@yao-pkg/pkg": "^6.1.0",
"minimist": "^1.2.8"
},
"bin": {
"comfyui-api": "dist/src/index.js"
},
"dependencies": {
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"chokidar": "^3.6.0",
"fastify": "^4.26.2",
"fastify-type-provider-zod": "^2.0.0",
"sharp": "^0.33.5",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"pkg": {
"targets": [
"node20-linux-x64"
],
"outputPath": "bin",
"public": true
}
}