This repository was archived by the owner on Nov 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 KB
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
{
"name": "chatroulette",
"version": "0.0.2-3",
"description": "",
"main": "main.js",
"repository": {
"type": "github.com",
"url": "https://github.com/vicimpa/chatroulette"
},
"keywords": [
"desktop",
"client",
"chatroulette",
"chat",
"roulette",
"droidcam",
"snap",
"camera",
"fake",
"camera",
"cam"
],
"author": "PromiSe####",
"scripts": {
"start": "electron .",
"start-dev": "electron . --dev",
"build": "electron-builder install-app-deps & electron-builder -wlm",
"build-windows": "electron-builder install-app-deps & electron-builder -w",
"build-linux": "electron-builder install-app-deps & electron-builder -l",
"build-mac": "electron-builder install-app-deps & electron-builder -m"
},
"readme": "./README_NPM.md",
"bin": {
"chatroulette": "bin/chatroulette.js"
},
"license": "ISC",
"devDependencies": {
"electron": "~10.1.4",
"electron-builder": "~22.9.1"
},
"build": {
"appId": "com.wsv.chatroulette",
"productName": "ChatRoulette",
"copyright": "WSV",
"files": [
"dist/preload.js",
"main.js",
"icon.png"
],
"directories": {
"output": "./build"
},
"win": {
"target": "portable",
"icon": "./icon.png",
"legalTrademarks": "WSV",
"publisherName": "ChatRoulette"
},
"linux": {
"target": "appimage",
"maintainer": "WSV",
"icon": "./icon.png",
"category": "Network",
"description": "ChatRoulette for Linux",
"executableName": "ChatRoulette"
}
}
}