forked from jaschahuisman/sd-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1009 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
41
42
43
{
"name": "stable-diffusion-api",
"version": "0.0.6",
"description": "API translation for Automatic1111 Stable Diffusion WebUI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Jascha Huisman <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jaschahuisman/sd-api.git",
"repository": {
"type": "git",
"url": "https://github.com/jaschahuisman/sd-api.git"
},
"keywords": [
"javascript",
"api",
"client",
"typescript",
"stable-diffusion",
"automatic1111",
"stable-diffusion-webui"
],
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/deasync": "^0.1.2",
"@types/node": "^18.15.11",
"@types/sharp": "^0.31.1",
"@types/string-similarity": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"axios": "^1.3.4",
"sharp": "^0.32.0",
"string-similarity": "^4.0.4"
}
}