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
|
{
"name": "dictionary",
"version": "0.1.0-beta",
"description": "Lookup meanings of words",
"main": "main.js",
"productName": "Dictionary",
"scripts": {
"start": "electron .",
"build": "electron-builder -mwl",
"release": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciferreeves/dictionary.git"
},
"keywords": [
"Dictionary"
],
"author": {
"name": "Lucifer Reeves",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/luciferreeves/dictionary/issues"
},
"homepage": "https://github.com/luciferreeves/dictionary#readme",
"build": {
"appId": "com.luciferreeves.dictionary",
"productName": "Dictionary",
"copyright": "Copyright © 2020 Lucifer Reeves – Available Under GPL-3.0 License.",
"output": "dist",
"mac": {
"category": "public.app-category.utilities",
"darkModeSupport": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"uninstallDisplayName": "Dictionary"
}
},
"linux": {
"synopsis": "Lookup meanings of words",
"description": "Lookup meanings of words",
"category": "Utility"
},
"devDependencies": {
"electron": "^10.1.0",
"electron-builder": "^22.8.0"
},
"dependencies": {
"natural": "^2.1.5",
"wordnet-db": "^3.1.14"
}
}
|