-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 1.9 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
87
88
89
90
91
92
93
94
95
{
"name": "vocabularify",
"version": "1.1.1",
"description": "Vocabularify - improve your vocabulary by doing nothing",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development electron .",
"build": "sudo electron-builder",
"build:win": "sudo electron-builder --win"
},
"build": {
"appId": "com.elmanhuseynov.vocabularify",
"productName": "Vocabularify",
"directories": {
"buildResources": "build"
},
"files": [
"**/*",
"!node_modules",
"!dist",
"!build",
"index.js",
"index.html",
"context_menu_icon.png"
],
"extraResources": [
{
"from": "languages",
"to": "languages"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "build/icon.ico"
},
"mac": {
"icon": "icon.icns",
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"linux": {
"target": "AppImage",
"icon": "build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/huseyn0w/Vocabularify.git"
},
"keywords": [
"vocabulary",
"vocabularify",
"elman_huseynov",
"Elman",
"Huseynov",
"learn",
"language"
],
"author": "Elman Huseynov",
"license": "ISC",
"bugs": {
"url": "https://github.com/huseyn0w/Vocabularify/issues"
},
"homepage": "https://github.com/huseyn0w/Vocabularify#readme",
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"dependencies": {
"electron-reload": "^2.0.0-alpha.1"
}
}