This repository has been archived by the owner on Feb 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.14 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
{
"name": "yamka",
"productName": "Yamka",
"version": "0.12.2",
"description": "Yet Another (secure) Messenger with powerful features",
"main": "src/js/commonjs/main.js",
"scripts": {
"build": "echo \"export const commit = \\\"`git rev-parse HEAD`\\\";\" > ./src/ts/renderer_process/renderer/_git_commit.ts && tsc --build ./src/ts/main_process/tsconfig.json & tsc --build ./src/ts/renderer_process/tsconfig.json & wait",
"start": "npm run build && electron .",
"lint": "eslint -c .eslintrc --ext .ts ./src/ts",
"dist": "npm run build && electron-builder --publish=always -wl",
"start-no-comp": "electron .",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [],
"author": "portasynthinca3",
"license": "MPL-2.0",
"build": {
"appId": "app.yamka.desktopclient",
"compression": "normal",
"asar": true,
"extends": null,
"linux": {
"target": "AppImage",
"category": "Network",
"icon": "src/icons/icon.png",
"publish": [
"github"
]
},
"win": {
"target": "nsis",
"icon": "src/icons/icon.png",
"publish": [
"github"
]
},
"nsis": {
"oneClick": false
}
},
"dependencies": {
"@electron/remote": "^1.0.4",
"blurhash": "^1.1.3",
"code-prettify": "^0.1.0",
"colorthief": "^2.3.2",
"electron-updater": "^4.3.9",
"escape-html": "^1.0.3",
"futoin-hkdf": "^1.3.3",
"marked": "^2.0.0",
"node-emoji": "^1.10.0",
"opusscript": "0.0.8",
"prism-themes": "^1.8.0",
"prismjs": "^1.25.0",
"qrcode": "^1.4.4",
"reflect-metadata": "^0.1.13",
"remark": "^13.0.0",
"smoothscroll-polyfill": "^0.4.4",
"speaker": "^0.5.3",
"tinycolor2": "^1.4.2",
"tmp": "^0.2.1",
"twemoji": "^13.0.1"
},
"devDependencies": {
"@types/escape-html": "^1.0.0",
"@types/marked": "^1.2.1",
"@types/node": "^14.14.33",
"@types/node-microphone": "^0.1.0",
"@types/tinycolor2": "^1.4.2",
"@types/tmp": "^0.2.0",
"electron": "^13.5.1",
"electron-builder": "^22.9.1",
"rollup": "^2.36.2",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3"
}
}