-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 938 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-bun-client",
"module": "index.ts",
"type": "module",
"license": "BSD-3-Clause",
"version": "0.2.16",
"description": "Wrapper for the REST endpoints of a comfyui instance & some quality of life utils.",
"bin": {
"comfybun": "./bin/main.ts"
},
"author": {
"name": "karurochari",
"url": "https://karurochari.com"
},
"engines": {
"bun": "1.1.18"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"gh-pages": "^6.1.1",
"typedoc": "^0.26.7",
"sharp": "^0.33.5"
},
"peerDependencies": {
"typescript": "^5.0.0",
"sharp": "^0.33.5"
},
"peerDependenciesMeta": {
"sharp": {
"optional": true
}
},
"dependencies": {
"@sinclair/typebox": "^0.32.35"
},
"scripts": {
"api-docs": "typedoc --tsconfig ./tsconfig.doc.json",
"deploy-api-docs": "gh-pages -d docs/api -e . -u \"github-actions-bot <[email protected]>\""
}
}