-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "translatte",
"version": "1.1.0",
"description": "An application for fast text translation wherever you are",
"author": {
"name": "Hydrock",
"email": "hydrock74@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Hydrock/TransLatte"
},
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron .",
"build": "electron-builder",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"build:all": "electron-builder --mac --win --linux --arm64 --x64"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"electron": "^27.3.11",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.translatte.app",
"productName": "TransLatte",
"files": [
"**/*"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "assets/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icon.png"
}
}
}