This repository has been archived by the owner on Jul 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.28 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
{
"name": "atomic-discord",
"version": "1.0.0",
"description": "An alternative Discord client made in Electron!",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "jsdoc -c conf.json -t ./node_modules/ink-docstrap/template -R README.md -r web",
"install": "node_modules/.bin/electron-rebuild",
"start": "node_modules/.bin/electron app.js",
"dist:mac": "node_modules/.bin/build -m --x64 mac dmg pkg",
"dist:windows": "node_modules/.bin/build -w --x64 --ia32 nsis nsisWeb portable",
"dist:linux": "node_modules/.bin/build -l --x64 --ia32 deb linux pacman rpm",
"start:web": "node_modules/.bin/live-server --host=0.0.0.0 --open=web"
},
"repository": {
"type": "git",
"url": "git+https://git.memework.org/heatingdevice/atomic-discord.git"
},
"author": {
"name": "heatingdevice",
"email": "heatingdevice@memework.org",
"url": "https://heatingdevicewillnevergoona.date"
},
"license": "MIT",
"bugs": {
"url": "https://git.memework.org/heatingdevice/atomic-discord/issues"
},
"homepage": "http://heatingdevice.memework.org/atomic-discord",
"dependencies": {
"chalk": "^1.1.3",
"discord.js": "github:hydrabolt/discord.js",
"electron-css-reload": "^1.0.8",
"electron-debug": "^1.1.0",
"electron-titlebar": "0.0.3",
"live-server": "^1.2.0",
"long": "^4.0.0",
"node-microphone": "^0.1.3",
"node-notifier": "^5.1.2"
},
"devDependencies": {
"asar": "^0.13.0",
"electron": "^2.0.3",
"electron-builder": "^18.1.0",
"electron-builder-squirrel-windows": "^18.0.0",
"electron-rebuild": "^1.5.11",
"eslint": "^3.19.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.3"
},
"build": {
"appId": "org.memework.atomicdiscord",
"files": [
"web",
"node_modules",
"app.js"
],
"mac": {
"category": "public.app-category.social"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"asar": true,
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"optionalDependencies": {
"speaker": "^0.3.0"
}
}