-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) 路 1.82 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) 路 1.82 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
{
"name": "git-it-electron",
"productName": "Git-it",
"version": "6.0.1",
"description": "An open source desktop app for learning Git and GitHub",
"author": "Jessica Lord",
"contributors": [
"Jonas Rittershofer"
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Git-it-App/git-it-electron.git"
},
"bugs": {
"url": "https://github.com/Git-it-App/git-it-electron/issues"
},
"homepage": "https://github.com/Git-it-App/git-it-electron",
"keywords": [
"Git",
"GitHub",
"Git-it",
"tutorial",
"guide",
"learn",
"desktop"
],
"main": "main.js",
"//": {
"--no-sandbox": "The --no-sandbox option is temporarily used to fix the SUID sandbox issue on newer linux distributions. To be checked and removed again."
},
"scripts": {
"start": "electron-forge start -- --no-sandbox",
"debug": "electron-forge start -- --no-sandbox -- --debug",
"debug:none": "electron-forge start -- --no-sandbox -- --debug --none",
"debug:some": "electron-forge start -- --no-sandbox -- --debug --some",
"debug:all": "electron-forge start -- --no-sandbox -- --debug --all",
"package": "electron-forge package",
"make": "electron-forge make",
"lint": "standard lib/*.js lib/verify/*.js menus/*.js main.js",
"lint:fix": "standard --fix lib/*.js lib/verify/*.js menus/*.js main.js",
"i18n:extract": "i18next -c ./config/i18next-parser.config.js"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.2",
"@electron-forge/maker-zip": "^7.11.2",
"electron": "^41.10.3",
"handlebars": "^4.7.9",
"i18next-parser": "^9.4.0",
"rimraf": "^6.1.3",
"sass": "^1.103.1",
"standard": "^17.1.2"
},
"dependencies": {
"axios": "^1.20.0",
"i18next": "^25.10.5",
"i18next-fs-backend": "^2.6.7"
}
}