-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.48 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
{
"private": true,
"name": "vicunia",
"description": "Install tools and chat frontend for LLaMA Alpaca",
"version": "2.0.0",
"author": "Elias Vincent Simon <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"extraResources": [
{
"from": "./models",
"to": "../models"
}
]
},
"dependencies": {
"@electron/remote": "^2.0.9",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.7",
"cmake-js": "^7.2.1",
"daisyui": "^2.51.3",
"electron": "21.3.3",
"electron-builder": "^23.6.0",
"electron-root-path": "^1.1.0",
"next": "^12.3.4",
"nextron": "^8.5.0",
"nodejs-file-downloader": "^4.10.6",
"postcss": "^8.4.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.5",
"semver": "^7.3.8",
"strip-ansi": "^7.0.1",
"tailwindcss": "^3.1.8",
"tree-kill": "^1.2.2",
"typescript": "^4.9.4"
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "21.3.3",
"arch": "x64"
}
}