-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 981 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
{
"name": "stable-diffusion-nodejs",
"version": "1.0.5",
"description": "StableDiffusion on nodejs with GPU acceleration using Cuda or DirectML",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"txt2img": "ts-node src/txt2img.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dakenf/stable-diffusion-nodejs.git"
},
"author": "Arthur Islamov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dakenf/stable-diffusion-nodejs/issues"
},
"homepage": "https://github.com/dakenf/stable-diffusion-nodejs#readme",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^18.16.3",
"@types/pngjs": "^6.0.1",
"minimist": "^1.2.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@huggingface/hub": "^0.5.1",
"@tensorflow/tfjs": "^4.4.0",
"onnxruntime-node-gpu": "^1.14.0",
"pngjs": "^7.0.0",
"tqdm": "^2.0.3"
}
}