-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.06 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
{
"name": "simplexity",
"version": "1.3.0",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -Rf release-builds",
"dist": "yarn run clean && yarn run pack-linux && cp -Rf release-builds/linux-unpacked release-builds/simplexity-linux-x86_64 && cp -Rf img metadata release-builds/simplexity-linux-x86_64/ && cd release-builds && tar czvf ${npm_package_name}-${npm_package_version}-linux-x86_64.tar.gz simplexity-linux-x86_64 && sha256sum ${npm_package_name}-${npm_package_version}-linux-x86_64.tar.gz > ${npm_package_name}-${npm_package_version}-linux-x86_64.tar.gz.sha256sum && cd -",
"start": "electron .",
"pack-linux": "electron-builder --linux",
"pack-win": "electron-builder --win=portable",
"pack-mac": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac --universal",
"pack-with-nm-src": "yarn install && mkdir -p release-builds && rm -f generated-sources.json && flatpak-node-generator yarn -r yarn.lock && rm -f release-builds/${npm_package_name}-${npm_package_version}-src-with_node_modules.tar.gz && tar czvf release-builds/${npm_package_name}-${npm_package_version}-src-with_node_modules.tar.gz metadata img node_modules yarn.lock README.md index.js package.json generated-sources.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"perplexity",
"ai",
"desktop",
"app"
],
"author": "Wiselabs Software",
"license": "BSD-3-Clause",
"description": "",
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "br.com.wiselabs.Simplexity",
"productName": "Simplexity",
"directories": {
"output": "release-builds"
},
"linux": {
"target": "AppImage",
"icon": "./img/icon.png",
"category": "Office"
},
"mac": {
"target": "dmg",
"category": "your.app.Productivity",
"icon": "./img/icon.icns"
},
"win": {
"icon": "./img/icon.ico",
"sign": false
}
},
"dependencies": {
"electron-window-state": "^5.0.3",
"path": "^0.12.7"
}
}