-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.55 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
{
"name": "modelprompter",
"version": "0.0.5",
"description": "Automate prompts to Stable Diffusion using multiple (free) cloud GPUs",
"productName": "Model Prompter",
"author": "[email protected]",
"private": true,
"scripts": {
"start": "npx quasar dev",
"build": "npx quasar build && echo '/* /index.html 200' | cat > dist/spa/_redirects",
"clone-servers": "git submodule update --init --recursive",
"dream-server": "python servers/AUTOMATIC1111/stable-diffusion-webui/webui.py --listen",
"dream-server-med": "python servers/AUTOMATIC1111/stable-diffusion-webui/webui.py --medvram --opt-split-attention --listen",
"dream-server-16xx": "python servers/AUTOMATIC1111/stable-diffusion-webui/webui.py --medvram --opt-split-attention --precision full --no-half --listen",
"dream-server-low": "python servers/AUTOMATIC1111/stable-diffusion-webui/webui.py --lowvram --opt-split-attention --precision full --no-half --listen",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"axios": "^0.21.1",
"blockly": "^8.0.5",
"dotenv": "^16.0.3",
"js-file-download": "^0.4.12",
"lodash-es": "^4.17.21",
"pinia": "^2.0.11",
"quasar": "^2.6.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@quasar/app-vite": "^1.0.0",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.14",
"pug": "^3.0.2",
"tiny-emitter": "^2.1.0"
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}