-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "fvsion",
"version": "0.0.1",
"main": "dist/electron/main/index.js",
"description": "Standalone electron build for Stable Diffusion",
"author": "Fvsion AI",
"license": "MIT",
"private": true,
"scripts": {
"reminder": "this is a comment, don't forget to manulally run `.venv/scripts/activate` to activate your virtual environment before running other command",
"dev": "vite",
"py": "python py/main.py",
"build:vite": "vue-tsc --noEmit && vite build",
"build:py": "pyinstaller main.spec",
"build:e": "electron-builder",
"build": "npm run build:vite && npm run build:e",
"exec": "start dist_electron/win-unpacked/fvsion.exe",
"be": "npm run build && npm run exec",
"preview": "vite preview"
},
"engines": {
"node": "~18.9.1 || ~18.10.0"
},
"dependencies": {
"@splidejs/vue-splide": "0.6.12",
"@vueuse/core": "9.2.0",
"@vueuse/head": "0.7.12",
"axios": "0.27.2",
"node-fetch": "3.2.10",
"painterro": "1.2.78",
"pinia": "2.0.22",
"uuid": "9.0.0",
"v-wave": "1.5.0",
"vue": "3.2.39",
"vue-axios": "3.4.1",
"vue-router": "4.1.5",
"vue-tsc": "1.0.3"
},
"devDependencies": {
"@iconify/json": "2.1.114",
"@tailwindcss/typography": "0.5.7",
"@types/uuid": "8.3.4",
"@vitejs/plugin-vue": "3.1.0",
"@vue/compiler-sfc": "3.2.40",
"autoprefixer": "10.4.12",
"daisyui": "2.31.0",
"electron": "21.0.1",
"electron-builder": "23.3.3",
"got": "12.5.0",
"json-schema-to-typescript": "11.0.2",
"postcss": "8.4.16",
"tailwindcss": "3.1.8",
"typescript": "4.8.3",
"unplugin-auto-import": "0.11.2",
"unplugin-icons": "0.14.10",
"unplugin-vue-components": "0.22.7",
"vite": "3.1.3",
"vite-plugin-electron": "0.9.3",
"vite-plugin-static-copy": "0.9.0"
},
"debug": {
"env": {
"VITE_DEV_SERVER_HOSTNAME": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344,
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue",
"python",
"FastAPI",
"Stable Diffusion"
]
}