forked from sindresorhus/pure
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
36 lines (36 loc) · 901 Bytes
/
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
{
"name": "lambda-pure-prompt",
"version": "1.0.0",
"description": "Pretty, minimal and fast ZSH prompt",
"license": "MIT",
"repository": "marszall87/lambda-pure",
"author": {
"name": "Michał Nykiel",
"email": "[email protected]"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"postinstall": "dest=/usr/local/share/zsh/site-functions; mkdir -p $dest && ln -sf \"$PWD/lambda-pure.zsh\" $dest/prompt_lambda-pure_setup && ln -sf \"$PWD/async.zsh\" $dest/async || echo 'Could not automagically symlink the prompt. Check out the readme on how to do it manually: https://github.com/marszall87/lambda-pure#manually'"
},
"files": [
"lambda-pure.zsh",
"async.zsh"
],
"keywords": [
"zsh",
"zshell",
"sh",
"shell",
"bash",
"pure",
"prompt",
"theme",
"git",
"async",
"fast",
"minimal",
"pretty"
]
}