-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 1.47 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
64
65
66
67
{
"name": "@saintno/comfyui-sdk",
"version": "0.2.43",
"description": "SDK for ComfyUI",
"main": "build/index.esm.js",
"typings": "build/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./build/index.esm.js",
"require": "./build/index.cjs",
"types": "./build/index.d.ts",
"default": "./build/index.esm.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tctien342/comfyui-sdk.git"
},
"author": "tctien342",
"license": "MIT",
"bugs": {
"url": "https://github.com/tctien342/comfyui-sdk/issues"
},
"homepage": "https://github.com/tctien342/comfyui-sdk#readme",
"devDependencies": {
"@types/bun": "^1.1.11",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/ws": "^8.5.12",
"auto-changelog": "^2.3.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dts-bundle-generator": "^9.5.1",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"comfyui",
"sdk",
"typescript",
"ts",
"comfy",
"stable-diffusion",
"comfyui-api",
"comfyui-sdk"
],
"dependencies": {
"ws": "^8.18.0"
},
"scripts": {
"version": "auto-changelog -p",
"commit": "git-cz",
"build": "bun build.ts",
"format": "prettier --write ."
},
"files": [
"build"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}