-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "twemoji-image-picker",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tinoji/twemoji-image-picker.git"
},
"description": "Twitter emoji image picker on desktop",
"author": "Hiroaki Kikuchi (https://github.com/tinoji)",
"license": "MIT",
"keywords": [
"emoji",
"picker",
"electron"
],
"main": "src/main.js",
"scripts": {
"eslint": "eslint ./src",
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.ketsuago.twemoji-image-picker",
"mac": {
"category": "public.app-category.utilities",
"target": "default",
"icon": "build/icon.icns"
},
"win": {
"target": "nsis"
}
},
"dependencies": {
"electron-dl": "^3.2.1",
"emoji.json": "^13.1.0",
"sharp": "^0.28.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"electron": "^12.0.9",
"electron-builder": "^22.10.5",
"eslint": "^7.27.0",
"eslint-plugin-eslint-comments": "^3.2.0"
}
}