forked from nirooj56/nepaliunicode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.31 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
{
"name": "unicode-converter",
"displayName": "Unicode",
"productName": "Unicode",
"FileVersion": "v1.2.1",
"description": "An Unicode Converter app with support for Windows, OS X and GNU/Linux.",
"version": "1.2.1",
"homepage": "http://nepdict.com/unicode.html",
"repository": {
"type": "git",
"url": "git://github.com/nirooj56/unicode.git"
},
"author": {
"name": "Bista Nirooj",
"email": "[email protected]",
"url": "http://nirojbista.com.np"
},
"main": "main.js",
"scripts": {
"start": "electron main.js",
"pack": "build",
"dist": "build --linux --ia32",
"postinstall": "install-app-deps"
},
"build": {
"appId": "com.nepdict.unicode",
"mac": {
"category": "public.app-category.productivity"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"deb",
"AppImage"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"electron": "^1.4.4",
"electron-builder": "^17.8.0",
"electron-winstaller": "^2.5.2"
}
}