-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.21 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
{
"name": "langly",
"productName": "Langly",
"version": "0.3.2",
"description": "Manage Laravel json language files",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"dist-all": "build -mwl",
"postinstall": "install-app-deps",
"release": "build -mwl"
},
"repository": "https://github.com/christofferok/langly",
"keywords": [
"laravel",
"language",
"json",
"localization"
],
"author": {
"name": "Christoffer Korvald",
"email": "[email protected]",
"url": "christofferok.com"
},
"license": "MIT",
"devDependencies": {
"electron": "~1.8.2-beta.2",
"electron-builder": "^19.46.3"
},
"dependencies": {
"electron-config": "^1.0.0",
"electron-context-menu": "^0.9.0",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.11",
"electron-updater": "^2.16.1",
"vue": "^2.5.8"
},
"build": {
"appId": "com.christofferok.langly",
"mac": {
"target": [
"dmg",
"zip"
]
},
"linux": {
"category": "Development",
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": [
"nsis"
]
}
}
}