forked from MorpheusAIs/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "morpheus",
"productName": "Morpheus",
"version": "0.0.4",
"appId": "org.morpheus.client",
"buildVersion": "${version}-${new Date().getTime()}",
"icon": "morph_square.icns",
"description": "Sovereign AI for the people",
"main": "src/index.js",
"homepage": "https://www.morepheusai.com",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build-verbose": "CSC_NAME='Developer ID Application: Better Brand Management LLC (ZA3KN2X4MN)' electron-builder",
"make": "electron-forge make",
"make-linux": "electron-forge make --platform=linux",
"start-forge": "electron-forge start",
"postbuild": "dpkg-sig --sign builder dist/*.deb"
},
"keywords": [
"Local",
"Sovereign",
"AI"
],
"author": "Morpheus",
"license": "MIT",
"dependencies": {
"@xenova/transformers": "^2.6.2",
"electron-squirrel-startup": "^1.0.0",
"langchain": "^0.0.170",
"mammoth": "^1.6.0",
"ml-distance": "^4.0.1",
"nvm": "^0.0.4",
"odt2html": "^1.0.1",
"pdf-parse": "^1.1.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.1.1",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-snap": "^7.1.0",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"cross-env": "^7.0.3",
"electron": "^27.0.4",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "org.morpheus.client",
"files": "![build_scripts{*/}",
"icon": "build/morph_square.icns",
"forceCodeSigning": true,
"dmg": {
"background": "build/1x/gmgbg.png",
"window": {
"width": 540,
"height": 380
},
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap"
],
"category": "Utility",
"synopsis": "Morpheus is AI for the people",
"description": "Decentralized AI for the people",
"maintainer": "Morpheus <[email protected]>",
"vendor": "Morpheus",
"executableName": "morpheus",
"desktop": {
"Name": "Morpheus",
"Icon": "build/morph_square.icns"
}
},
"deb": {
"compression": "gz"
}
}
}