-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
121 lines (121 loc) · 2.52 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
{
"name": "clubhouse",
"productName": "Clubhouse Desktop Client ( Unofficial )",
"version": "0.0.0",
"description": "Clubhouse unofficial desktop client",
"license": "MIT",
"repository": "callmearta/clubhouse-desktop",
"author": {
"name": "Arta Mo",
"email": "[email protected]",
"url": "https://callmearta.ir"
},
"scripts": {
"lint": "xo",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos --linux --windows",
"release": "np"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"server/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"agora_electron": {
"prebuilt": true,
"electron_version": "10.2.0"
},
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"agora-rtc-sdk": "^3.3.0",
"agora-rtm-sdk": "^1.4.2",
"clubhouse-api": "git+https://github.com/callmearta/clubhouse-api.git",
"cross-fetch": "^3.0.6",
"electron-context-menu": "^0.15.0",
"electron-debug": "^3.0.0",
"electron-reload": "^1.5.0",
"electron-store": "^5.1.0",
"electron-unhandled": "^3.0.0",
"electron-updater": "^4.0.6",
"electron-util": "^0.13.0",
"esm": "^3.2.25",
"nanoid": "^3.1.20",
"nodemon": "^2.0.7",
"pubnub": "^4.29.11",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"store": "^2.0.12",
"toastr": "^2.1.4",
"universal-analytics": "^0.4.23",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vue-toastr": "^2.1.2",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"electron": "^10.2.0",
"electron-builder": "^21.2.0",
"np": "^5.0.3",
"xo": "^0.25.3"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "com.company.ClubHouse",
"mac": {
"category": "public.app-category.social-networking",
"darkModeSupport": true,
"hardenedRuntime": true,
"entitlements": "entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Please give us access to your microphone"
}
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network;Chat"
}
}
}