-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "cohesion",
"version": "1.0.8",
"description": "A Notion Desktop client for Linux",
"main": "dist/index.js",
"scripts": {
"dist": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run dist && electron .",
"build": "npm run dist && electron-builder",
"build:extensions": "cd browser-extension && ./build.sh",
"build:snap": "npm run dist && electron-builder --linux snap",
"flatpak:init-tools": "git submodule update --init --recursive flatpak/flatpak-builder-tools",
"preflatpak:generate-sources": "rm -rf node_modules && npm install --package-lock-only",
"flatpak:generate-sources": "./flatpak/generate-sources.sh",
"flatpak:lint": "",
"flatpak:build": "flatpak-builder --force-clean --user --install-deps-from=flathub --repo=repo --install builddir flatpak/flathub-manifest/io.github.brunofin.Cohesion.yml"
},
"author": "Bruno Finger <[email protected]>",
"license": "MIT",
"dependencies": {
"electron-store": "^8.1.0"
},
"devDependencies": {
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"typescript": "^5.5.2"
},
"build": {
"appId": "io.github.brunofin.Cohesion",
"directories": {
"output": "./build"
},
"files": [
"dist",
"package.json"
],
"extraFiles": [
"data"
]
}
}