-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 966 Bytes
/
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
{
"name": "circuit-chat-app",
"productName": "Circuit Chat",
"description": "Cicuit tray chat app written with Circuit JS SDK",
"main": "./app/main",
"scripts": {
"start": "electron app",
"reinstall": "rm -rf node_modules; rm -rf app/node_modules; npm install",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.unify.circuit-chat",
"asar": false,
"mac": {
"category": "public.app-category.business"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
}
},
"repository": "https://github.com/circuit/circuit-chat-app",
"keywords": [
"Circuit",
"WebRTC",
"electron",
"SDK",
"API",
"chat"
],
"author": "Roger Urscheler <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"electron": "^7.3.3",
"electron-builder": "^21.2.0"
}
}