-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "threema-desktop",
"version": "2.5.1",
"description": "Threema for Desktop",
"main": "build-js/index.js",
"scripts": {
"tsc": "tsc && copyfiles -u 1 src/assets/*.* src/loader/*.* build-js/",
"start": "electron .",
"ciBuild": "electron-builder build -p always --config=build.js",
"build": "electron-builder build -p never --config=build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "GeekCorner",
"license": "MIT",
"dependencies": {
"discord-rpc-patch": "^4.0.1",
"electron-localshortcut": "^3.2.1",
"node-fetch": "^2.6.7",
"path": "^0.12.7"
},
"devDependencies": {
"@types/electron-localshortcut": "3.1.2",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"copyfiles": "2.4.1",
"electron": "21.4.4",
"electron-builder": "23.6.0",
"eslint": "8.36.0",
"typescript": "4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/geekcornergh/threema-for-desktop"
},
"engines": {
"node": ">=16.0.0"
},
"resolutions": {
"@electron/universal": "^1.2.1"
}
}