-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@cs-magic-open/zsh-git-relative-path",
"version": "0.5.0",
"description": "A ZSH plugin that shows your current path relative to the git project root in your prompt",
"main": "zsh-git-relative-path.plugin.zsh",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/preuninstall.js",
"postversion": "git push && git push --tags"
},
"bin": {
"zsh-git-relative-path": "./scripts/postinstall.js"
},
"preferGlobal": true,
"files": [
"zsh-git-relative-path.plugin.zsh",
"scripts/",
"README.md",
"LICENSE"
],
"keywords": [
"zsh",
"oh-my-zsh",
"plugin",
"git",
"path",
"prompt"
],
"author": "cs-magic-open",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cs-magic-open/zsh-git-relative-path.git"
},
"bugs": {
"url": "https://github.com/cs-magic-open/zsh-git-relative-path/issues"
},
"homepage": "https://github.com/cs-magic-open/zsh-git-relative-path#readme",
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}