forked from sindresorhus/pure
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "purer-prompt",
"version": "1.6.1",
"description": "A pretty one-line ZSH prompt based on Pure.",
"license": "MIT",
"repository": "dfurnes/purer",
"author": {
"name": "David Furnes",
"email": "david@dfurnes.com",
"url": "dfurnes.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"postinstall": "PURER_DEST=/usr/local/share/zsh/site-functions npm run --silent postinstall-link && exit 0; PURER_DEST=\"$PWD/functions\" npm run postinstall-link && npm run postinstall-fail-instructions",
"postinstall-link": "mkdir -p \"$PURER_DEST\" && ln -sf \"$PWD/pure.zsh\" \"$PURER_DEST/prompt_purer_setup\" && ln -sf \"$PWD/async.zsh\" \"$PURER_DEST/async\"",
"postinstall-fail-instructions": "echo \"ERROR: Could not automagically symlink the prompt. Either:\\n1. Check out the readme on how to do it manually: https://github.com/sindresorhus/pure#manually\\n2. Or add the following to your \\`.zshrc\\`:\\n\\n fpath+=(\\$fpath '$PWD/functions')\""
},
"files": [
"pure.zsh",
"async.zsh"
],
"keywords": [
"zsh",
"zshell",
"sh",
"shell",
"bash",
"pure",
"prompt",
"theme",
"git",
"async",
"fast",
"minimal",
"pretty"
]
}