forked from TheGoddessInari/hamsket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 4.2 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
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
{
"name": "hamsket",
"productName": "Hamsket",
"version": "0.6.5",
"description": "Hamsket",
"main": "electron/main.js",
"private": true,
"author": "TheGoddessInari <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TheGoddessInari/hamsket.git"
},
"bugs": {
"url": "https://github.com/TheGoddessInari/hamsket/issues"
},
"homepage": "https://github.com/TheGoddessInari/hamsket",
"keywords": [
"Hamsket",
"messaging",
"app",
"slack",
"whatsapp",
"facebook",
"messenger",
"telegram",
"google",
"hangouts",
"skype"
],
"scripts": {
"start": "npm run compile && electron build/production/Hamsket",
"debug": "electron --inspect build/production/Hamsket",
"test": "mocha test/tests/**/*.spec.js",
"buildversion": "git show --pretty=\"%h %d %cD\" -s > build/production/Hamsket/BUILDVERSION || node -p -e \"require('./build/production/Hamsket/package.json').version\" > build/production/Hamsket/BUILDVERSION",
"clean": "shx rm -rf ./build/production",
"compile": "sencha app build && shx cp package.json package-lock.json build/production/Hamsket/ && npm run buildversion",
"recompile": "npm run distclean && npm run compile",
"distclean": "shx rm -rf ./dist",
"distclean:win": "shx rm -rf ./dist/win-{ia32-,}unpacked",
"distclean:linux": "shx rm -rf ./dist/linux-{ia32-,}unpacked",
"distclean:osx": "shx rm -rf ./dist/macos-unpacked",
"pack": "electron-builder --dir",
"pack:osx": "electron-builder --macos --dir",
"pack:win": "electron-builder --win --ia32 --x64 --dir",
"pack:win32": "electron-builder --win --ia32 --dir",
"pack:win64": "electron-builder --win --x64 --dir",
"pack:linux": "electron-builder --linux --ia32 --x64 --dir",
"pack:linux32": "electron-builder --linux --ia32 --dir",
"pack:linux64": "electron-builder --linux --x64 --dir",
"pack:all": "electron-builder -mwl --ia32 --x64 --dir",
"build": "electron-builder",
"build:osx": "electron-builder --macos",
"build:linux": "electron-builder --linux --ia32 --x64",
"build:linux32": "electron-builder --linux --ia32",
"build:linux64": "electron-builder --linux --x64",
"build:win": "electron-builder --win --ia32 --x64",
"build:win32": "electron-builder --win --ia32",
"build:win64": "electron-builder --win --x64",
"build:all": "electron-builder -mwl --ia32 --x64",
"setup": "npm run clean && npm run compile && npm run build",
"setup:osx": "npm run clean && npm run compile && npm run build:osx",
"setup:win": "npm run clean && npm run compile && npm run build:win",
"setup:win32": "npm run clean && npm run compile && npm run build:win32",
"setup:win64": "npm run clean && npm run compile && npm run build:win64",
"setup:linux": "npm run clean && npm run compile && npm run build:linux",
"setup:linux32": "npm run clean && npm run compile && npm run build:linux32",
"setup:linux64": "npm run clean && npm run compile && npm run build:linux64",
"repack": "npm run clean && npm run compile && npm run distclean && npm run pack",
"repack:osx": "npm run clean && npm run compile && npm run distclean:osx && npm run pack:osx",
"repack:win": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win",
"repack:win32": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win32",
"repack:win64": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win64",
"repack:linux": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux",
"repack:linux32": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux32",
"repack:linux64": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux64",
"dist": "npm run repack"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"auto-launch": "^5.0.5",
"electron-context-menu": "^3.1.1",
"electron-store": "^8.0.1",
"mime": "^3.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"asar": "^3.1.0",
"chai": "^4.3.4",
"crowdin": "^3.5.0",
"csvjson": "^5.1.0",
"electron": "^20.0.1",
"electron-builder": "~23.3.3",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"spectron": "^15.0.0"
}
}