-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.1 KB
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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "simplexity-ai-app",
"productName": "SimplexityAI",
"version": "5.0.0",
"description": "SimplexityAI - Unofficial Perplexity AI Desktop App not affiliated with Perplexity AI",
"main": "main.js",
"scripts": {
"start": "electron .",
"start-minimized": "electron . --hidden",
"build": "electron-builder",
"package-win": "electron-builder --win",
"package-mac": "electron-builder --mac",
"package-linux": "electron-builder --linux",
"postinstall": "electron-builder install-app-deps",
"package-auto": "node build-auto.js"
},
"repository": "https://github.com/inulute/simplexity-ai-app",
"author": "inulute <inulute@users.noreply.github.com>",
"license": "GPL-3.0-only",
"dependencies": {
"electron-clipboard-extended": "^1.1.1",
"electron-store": "^7.0.3",
"electron-window-state": "^5.0.3",
"marked": "^15.0.11"
},
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.inulute.simplexityai",
"productName": "Simplexity AI",
"directories": {
"output": "release-builds"
},
"asar": true,
"compression": "maximum",
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/.{idea,git,cache,github,vscode}",
"!**/{.DS_Store,.git,.gitignore,.npmignore}",
"!**/{*.log,*.md}",
"!**/package-lock.json"
],
"protocols": [
{
"name": "Simplexity AI Search",
"schemes": [
"simplexity-ai-search"
]
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icons/mac/favicon.icns",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis"
],
"icon": "assets/icons/win/icon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Simplexity AI",
"runAfterFinish": true,
"artifactName": "${productName}-Setup-${version}.${ext}",
"differentialPackage": true,
"include": "build/installer.nsh",
"installerIcon": "assets/icons/win/icon.ico",
"uninstallerIcon": "assets/icons/win/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icons/png/favicon.png",
"category": "Utility",
"synopsis": "Simplexity AI - Unofficial Perplexity AI Desktop App",
"desktop": {
"StartupWMClass": "simplexity-ai-app"
},
"artifactName": "${productName}-${version}.${ext}"
},
"appImage": {
"license": "LICENSE",
"category": "Utility"
},
"deb": {
"depends": [
"libnotify4",
"libxtst6",
"libnss3"
],
"compression": "xz"
}
}
}