-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.73 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
96
97
98
99
{
"name": "majin",
"productName": "Majin",
"version": "2.1.0",
"appId": "com.younity-studios.majin",
"description": "Mobile Browser for the Desktop",
"author": "Hugo V. Monteiro <hugo@hugovmonteiro.net>",
"license": "GPL-2.0",
"copyright": "Copyright (c) 2024, Hugo V. Monteiro",
"homepage": "https://www.younity-studios/apps/majin/",
"startPage": "start.html",
"bugs": {
"url": "https://github.com/hvmonteiro/majin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvmonteiro/majin.git"
},
"keywords": [
"majin",
"browser",
"mobile",
"desktop",
"systray",
"tray",
"ontop"
],
"main": "src/majin.js",
"scripts": {
"start": "electron .",
"dev": "electron . --enable-logging",
"lint": "grunt jslint htmllint",
"build:clean": "grunt clean --verbose",
"build:test": "grunt",
"build:test-exec": "NODE_ENV=development electron src/majin.js --test",
"build": "npm run dist-windows && npm run dist-linux && npm run dist-mac",
"dist-mac": "electron-builder --projectDir ./src -c electron-builder.yml --mac --x64",
"dist-linux": "electron-builder --projectDir ./src -c electron-builder.yml --linux --x64 --armv7l",
"dist-windows": "electron-builder --projectDir ./src -c electron-builder.yml --win --x64 --ia32",
"build:pre-release": "npm audit fix && npm run build:test && npm run build:test-exec",
"build:release": "npm version minor && npm run pre-release && npm run build",
"build:post-release": "#git push && git push --tags && npm clean"
},
"devDependencies": {
"@electron/packager": "^18.3.2",
"electron": "^29.2.0",
"electron-builder": "^24.13.3",
"electron-installer-snap": "^5.2.0",
"electron-updater": "^6.2.1",
"electron-windows-store": "^2.1.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-exec": "^3.0.0",
"grunt-htmllint": "^0.3.0",
"grunt-mkdir": "^1.1.0",
"grunt-replace": "^2.0.2",
"grunt-version": "^3.0.1",
"grunt-zip": "^1.0.0",
"load-grunt-tasks": "^5.1.0",
"rcedit": "^4.0.1"
},
"engines": {
"electron": "latest",
"node": "latest",
"npm": "latest"
},
"os": [
"darwin",
"mas",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32"
],
"build": {
"productName": "mjain",
"appId": "com.younity-studios.majin",
"directories": {
"output": "build"
},
"win": {
"icon": "assets/icons/win/icon.ico"
},
"mac": {
"icon": "assets/icons/mac/icon.icns"
},
"linux": {
"icon": "assets/icons/win/icon.png"
}
},
"private": true,
"dependencies": {
"electron-store": "^8.2.0"
}
}