forked from AiursoftWeb/Kahla.App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.49 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "kahla",
"version": "4.3.5",
"description": "Kahla is a cross-platform business messaging app.",
"author": "Aiursoft <[email protected]> (https://www.aiursoft.com/)",
"build": {
"appId": "com.aiursoft.kahla",
"productName": "Kahla",
"copyright": "Copyright © 2019 Aiursoft",
"directories": {
"app": "www"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"artifactName": "${productName}.Setup.${version}.${ext}"
},
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "zip"
}
],
"extraFiles": [
{
"from": "build/windows",
"to": "./"
}
]
},
"mac": {
"target": "dmg"
},
"linux": {
"target": [
{
"target": "deb"
},
{
"target": "rpm"
},
{
"target": "tar.gz"
}
]
}
},
"contributors": [
],
"license": "MIT",
"scripts": {
"postinstall": "npm run prebuild",
"electron": "ng build --base-href ./ && electron ./www/index.js",
"start": "ng serve --open",
"prebuild": "ts-node prebuild.ts && uglifyjs node_modules/crypto-js/crypto-js.js -c -m -o src/assets/crypto-js.min.js",
"build": "ng build --base-href /",
"lint": "ng lint --type-check && tsc",
"prod": "npm run prebuild && ng build --base-href / --prod --output-hashing none",
"prod-electron": "ng build --base-href ./ --prod",
"prod-zh": "ng build --base-href / --prod --i18n-locale zh --i18n-file ./src/messages.zh.xlf",
"pack-electron": "electron-builder -p never"
},
"dependencies": {
"@angular/animations": "10.2.1",
"@angular/common": "10.2.1",
"@angular/compiler": "10.2.1",
"@angular/core": "10.2.1",
"@angular/forms": "10.2.1",
"@angular/localize": "^10.2.1",
"@angular/platform-browser": "10.2.1",
"@angular/platform-browser-dynamic": "10.2.1",
"@angular/router": "10.2.1",
"@fortawesome/fontawesome-free": "^5.15.1",
"@joeattardi/emoji-button": "^4.2.0",
"@videojs/themes": "^1.0.1",
"autolinker": "^3.14.1",
"blueimp-load-image": "^5.14.0",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"he": "^1.2.0",
"ngx-electron": "^2.2.0",
"rxjs": "^6.6.3",
"smoothscroll-polyfill": "^0.4.4",
"sweetalert2": "^10.8.1",
"tslib": "^2.0.3",
"video.js": "^7.10.1",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1002.0",
"@angular-devkit/build-optimizer": "^0.1002.0",
"@angular-devkit/core": "^10.2.0",
"@angular/cli": "^10.2.0",
"@angular/compiler-cli": "^10.2.1",
"@angular/language-service": "10.2.1",
"@types/crypto-js": "^4.0.1",
"@types/node": "^14.14.6",
"codelyzer": "^6.0.1",
"electron": "^10.1.5",
"electron-builder": "^22.9.1",
"node": "^15.0.1",
"ts-node": "^9.0.0",
"tslint": "~6.1.2",
"typescript": "~4.0.5",
"uglify-js": "^3.11.4",
"webpack": "^4.44.2"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/AiursoftWeb/Kahla.App.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/AiursoftWeb/Kahla.App/issues"
},
"homepage": "https://www.kahla.app",
"release": "build"
}