-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "mojibar",
"version": "3.1.0",
"description": "A menubar app adaptation of Emoji searcher.",
"main": "main.js",
"dependencies": {
"electron-is-dev": "^2.0.0",
"emojilib": "^3.0.8",
"menubar": "^5.1.0",
"unicode-emoji-json": "^0.4.0"
},
"devDependencies": {
"electron": "^22.0.3",
"electron-packager": "^17.1.1",
"standard": "^17.0.0"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . Mojibar --platform=darwin --arch=x64 --overwrite --icon=mojibar",
"build:linux": "electron-packager . Mojibar --platform=linux --arch=x64 --overwrite --icon=mojibar",
"build:win":"electron-packager . Mojibar --platform=win32 --arch=x64 --overwrite --icon=mojibar",
"test": "standard main.js app/search.js app/settings.js",
"fix": "standard --fix main.js app/search.js app/settings.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckhatton/mojibar.git"
},
"author": "Mu-An Chiou <[email protected]> (https://muan.co/)",
"contributors": [
{
"name": "Christopher Hatton",
"email": "[email protected]",
"url": "https://ckhatton.com/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ckhatton/mojibar/issues"
},
"homepage": "https://github.com/ckhatton/mojibar#readme"
}