-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "portablegit",
"version": "2.45.21",
"description": "🔄 Redistribution of Git for Windows PortableGit",
"keywords": [
"git",
"npm",
"binary",
"portable",
"portableapps",
"npx",
"redistribution",
"git-for-windows",
"portablegit"
],
"homepage": "https://github.com/jcbhmr/portablegit.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/jcbhmr/portablegit.js.git"
},
"license": "GPL-2.0-or-later",
"contributors": [
"Jacob Hummer <[email protected]> (https://jcbhmr.me/)"
],
"type": "module",
"exports": {
"./*": {
"node": "./out/*"
}
},
"bin": {
"bash": "out/bin/bash.exe",
"git": "out/bin/git.exe",
"sh": "out/bin/sh.exe",
"git-gui": "out/cmd/git-gui.exe",
"git-receive-pack": "out/cmd/git-receive-pack.exe",
"git-upload-pack": "out/cmd/git-upload-pack.exe",
"gitk": "out/cmd/gitk.exe",
"scalar": "out/cmd/scalar.exe",
"start-ssh-agent": "out/cmd/start-ssh-agent.cmd",
"start-ssh-pageant": "out/cmd/start-ssh-pageant.cmd",
"tig": "out/cmd/tig.exe",
"git-bash": "out/git-bash.exe",
"git-cmd": "out/git-cmd.exe"
},
"files": [
"out",
"scripts.js"
],
"scripts": {
"generate": "node scripts.js generate",
"build": "7z x -aos -oout PortableGit-64-bit.7z.exe",
"clean": "rimraf out",
"test": "node --test",
"format": "prettier -w .",
"postinstall": "node scripts.js postinstall",
"squash": "node scripts.js squash"
},
"os": [
"win32"
],
"cpu": [
"x64"
],
"dependencies": {
"execa": "^9.1.0"
},
"bundleDependencies": [
"execa"
],
"devDependencies": {
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"typescript": "latest"
}
}