-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "socketfox",
"productName": "Socketfox",
"version": "0.6.2",
"license": "GPL-3.0-only",
"author": {
"name": "Richard Kriesman",
"email": "rkriesman@gmail.com"
},
"build": {
"appId": "com.richardkriesman.socketfox",
"appImage": {
"category": "Development",
"synopsis": "Develop better, faster websockets in Socket.IO."
},
"directories": {
"output": "build"
},
"linux": {
"icon": "build/icon.icns",
"publish": {
"provider": "generic",
"url": "https://opensource.room236.com/socketfox",
"channel": "latest"
},
"target": "AppImage"
},
"mac": {
"publish": {
"provider": "generic",
"url": "https://opensource.room236.com/socketfox",
"channel": "latest"
},
"target": "dmg"
},
"win": {
"publish": {
"provider": "generic",
"url": "https://opensource.room236.com/socketfox",
"channel": "latest"
},
"target": "nsis"
}
},
"private": true,
"main": "dist/src/main/main.js",
"scripts": {
"build": "yarn gulp",
"start": "electron ."
},
"devDependencies": {
"@types/ace": "^0.0.40",
"@types/electron-is-dev": "^1.1.1",
"@types/jquery": "^3.3.4",
"@types/jqueryui": "^1.12.2",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/socket.io-client": "^1.4.32",
"electron": "^7.1.9",
"electron-builder": "^22.2.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"node-sass": "^4.13.1",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"ace-builds": "^1.3.3",
"debug": "^3.1.0",
"electron-about-window": "^1.13.2",
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.2.0",
"jquery": "^3.4.0",
"jqueryui": "^1.11.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"socket.io-client": "^2.1.1",
"socketio-wildcard": "^2.0.0"
}
}