@sebastienrousseau/dotfiles 0.2.440 → 0.2.452
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COPYRIGHT +5 -0
- package/LICENSE +1260 -2
- package/Makefile +79 -0
- package/README.md +328 -71
- package/bin/dotfiles.sh +150 -0
- package/index.js +24 -0
- package/package.json +99 -25
- package/pnpm-lock.yaml +178 -0
- package/pnpm-workspace.yaml +2 -0
- package/shell/README.md +3 -0
- package/shell/aliases/README.md +327 -0
- package/{Icon/r → shell/aliases/default/README.md} +0 -0
- package/shell/aliases/default/default.aliases.sh +199 -0
- package/shell/aliases/gcloud/README.md +117 -0
- package/shell/aliases/gcloud/gcloud.aliases.sh +121 -0
- package/shell/aliases/git/README.md +279 -0
- package/shell/aliases/git/git.aliases.wip +586 -0
- package/shell/aliases/heroku/README.md +457 -0
- package/shell/aliases/heroku/heroku.aliases.sh +1031 -0
- package/shell/aliases/jekyll/README.md +32 -0
- package/shell/aliases/jekyll/jekyll.aliases.sh +50 -0
- package/shell/aliases/pnpm/README.md +3 -0
- package/shell/aliases/pnpm/pnpm.aliases.sh +42 -0
- package/shell/aliases/subversion/README.md +54 -0
- package/shell/aliases/subversion/subversion.aliases.sh +123 -0
- package/shell/aliases/tmux/README.md +0 -0
- package/shell/aliases/tmux/tmux.aliases.sh +14 -0
- package/shell/aliases.sh +12 -0
- package/shell/configurations/README.md +3 -0
- package/shell/configurations/bash/bashrc +36 -0
- package/shell/configurations/curl/cacert.pem +3460 -0
- package/shell/configurations/curl/curlrc +55 -0
- package/shell/configurations/default/color.sh +17 -0
- package/shell/configurations/default/editor.sh +16 -0
- package/shell/configurations/default/prompt.sh +37 -0
- package/shell/configurations/inputrc/inputrc +22 -0
- package/shell/configurations/jshint/jshintrc +37 -0
- package/shell/configurations/profile/profile +36 -0
- package/shell/configurations/tmux/tmux +95 -0
- package/shell/configurations/vim/vimrc +73 -0
- package/{.wgetrc → shell/configurations/wget/wgetrc} +4 -0
- package/shell/configurations/zsh/zshrc +40 -0
- package/shell/configurations.sh +10 -0
- package/shell/exit.sh +9 -0
- package/shell/functions/README.md +3 -0
- package/shell/functions/cdls.sh +19 -0
- package/shell/functions/changediskpwd.sh +19 -0
- package/shell/functions/code.sh +18 -0
- package/shell/functions/countdown.sh +33 -0
- package/shell/functions/curlheader.sh +20 -0
- package/shell/functions/curltime.sh +31 -0
- package/shell/functions/encode64.sh +25 -0
- package/shell/functions/environment.sh +37 -0
- package/shell/functions/extract.sh +32 -0
- package/shell/functions/filehead.sh +4 -0
- package/{zsh/zsh/functions/genpwd.zsh → shell/functions/genpwd.sh} +8 -3
- package/shell/functions/goto.sh +14 -0
- package/shell/functions/headers.sh +4 -0
- package/{zsh/zsh/functions/hidehiddenfiles.zsh → shell/functions/hidehiddenfiles.sh} +7 -2
- package/shell/functions/history-all.sh +7 -0
- package/shell/functions/hostinfo.sh +25 -0
- package/{zsh/zsh/functions/hstats.zsh → shell/functions/hstats.sh} +6 -1
- package/shell/functions/httpdebug.sh +7 -0
- package/shell/functions/keygen.sh +23 -0
- package/shell/functions/last.sh +9 -0
- package/shell/functions/logout.sh +10 -0
- package/shell/functions/lowercase.sh +28 -0
- package/shell/functions/macos.sh +47 -0
- package/shell/functions/matrix.sh +9 -0
- package/shell/functions/mcd.sh +18 -0
- package/shell/functions/mount_read_only.sh +9 -0
- package/shell/functions/myproc.sh +7 -0
- package/shell/functions/prependpath.sh +19 -0
- package/shell/functions/print.sh +13 -0
- package/shell/functions/ql.sh +7 -0
- package/shell/functions/rd.sh +15 -0
- package/shell/functions/remove_disk.sh +9 -0
- package/shell/functions/ren.sh +11 -0
- package/shell/functions/rm.sh +13 -0
- package/shell/functions/rps.sh +103 -0
- package/{zsh/zsh/functions/showhiddenfiles.zsh → shell/functions/showhiddenfiles.sh} +7 -2
- package/{zsh/zsh/functions/size.zsh → shell/functions/size.sh} +6 -1
- package/shell/functions/stopwatch.sh +13 -0
- package/shell/functions/trash.sh +13 -0
- package/shell/functions/tree.sh +13 -0
- package/shell/functions/uppercase.sh +28 -0
- package/shell/functions/uuidgen.sh +27 -0
- package/shell/functions/view-source.sh +8 -0
- package/shell/functions/vscode.sh +31 -0
- package/shell/functions/whoisport.sh +12 -0
- package/shell/functions/zipf.sh +14 -0
- package/shell/functions.sh +10 -0
- package/shell/history.sh +110 -0
- package/shell/paths/ant/ant.paths.sh +15 -0
- package/shell/paths/default/default.paths.sh +17 -0
- package/shell/paths/homebrew/homebrew.paths.sh +22 -0
- package/shell/paths/java/java.paths.sh +16 -0
- package/shell/paths/maven/maven.paths.sh +16 -0
- package/shell/paths/node/node.paths.sh +13 -0
- package/shell/paths/nvm/nvm.paths.sh +21 -0
- package/shell/paths/pnpm/pnpm.paths.sh +13 -0
- package/shell/paths/ruby/ruby.paths.sh +23 -0
- package/shell/paths/tmux/tmux.paths.sh +15 -0
- package/shell/paths.sh +12 -0
- package/.curlrc +0 -17
- package/.eslintrc +0 -44
- package/.jshintrc +0 -22
- package/.travis.yml +0 -21
- package/CODE_OF_CONDUCT.md +0 -46
- package/CONTRIBUTING.md +0 -60
- package/Dotfiles.png +0 -0
- package/ISSUE_TEMPLATE.md +0 -43
- package/bash/.bash_aliases +0 -409
- package/bash/.bash_exit +0 -25
- package/bash/.bash_functions +0 -312
- package/bash/.bash_load_completion +0 -62
- package/bash/.bash_profile +0 -295
- package/bash/.bashrc +0 -47
- package/homebrew/brew-cask.sh +0 -165
- package/homebrew/brew-package.sh +0 -256
- package/homebrew/brew-tap.sh +0 -35
- package/homebrew/install.sh +0 -29
- package/zsh/.zshrc +0 -64
- package/zsh/aliases.zsh +0 -427
- package/zsh/configurations.zsh +0 -19
- package/zsh/exit.zsh +0 -21
- package/zsh/functions.zsh +0 -42
- package/zsh/history.zsh +0 -53
- package/zsh/profile.zsh +0 -17
- package/zsh/zsh/configurations/color.zsh +0 -21
- package/zsh/zsh/configurations/editor.zsh +0 -21
- package/zsh/zsh/configurations/history.zsh +0 -53
- package/zsh/zsh/configurations/path.zsh +0 -123
- package/zsh/zsh/configurations/prompt.zsh +0 -24
- package/zsh/zsh/functions/cd.zsh +0 -51
- package/zsh/zsh/functions/cdls.zsh +0 -11
- package/zsh/zsh/functions/changediskpwd.zsh +0 -4
- package/zsh/zsh/functions/code.zsh +0 -2
- package/zsh/zsh/functions/countdown.zsh +0 -33
- package/zsh/zsh/functions/curlheader.zsh +0 -12
- package/zsh/zsh/functions/curltime.zsh +0 -12
- package/zsh/zsh/functions/extract.zsh +0 -27
- package/zsh/zsh/functions/goto.zsh +0 -8
- package/zsh/zsh/functions/history-all.zsh +0 -2
- package/zsh/zsh/functions/hostinfo.zsh +0 -19
- package/zsh/zsh/functions/httpdebug.zsh +0 -2
- package/zsh/zsh/functions/keygen.zsh +0 -18
- package/zsh/zsh/functions/logout.zsh +0 -5
- package/zsh/zsh/functions/lowercase.zsh +0 -23
- package/zsh/zsh/functions/matrix.zsh +0 -4
- package/zsh/zsh/functions/mcd.zsh +0 -11
- package/zsh/zsh/functions/mount_read_only.zsh +0 -4
- package/zsh/zsh/functions/myproc.zsh +0 -2
- package/zsh/zsh/functions/print.zsh +0 -8
- package/zsh/zsh/functions/ql.zsh +0 -2
- package/zsh/zsh/functions/rd.zsh +0 -8
- package/zsh/zsh/functions/remove_disk.zsh +0 -4
- package/zsh/zsh/functions/rm.zsh +0 -10
- package/zsh/zsh/functions/stopwatch.zsh +0 -8
- package/zsh/zsh/functions/trash.zsh +0 -8
- package/zsh/zsh/functions/tree.zsh +0 -8
- package/zsh/zsh/functions/uppercase.zsh +0 -23
- package/zsh/zsh/functions/zipf.zsh +0 -9
package/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { exec } from "child_process";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Execute simple shell command (async wrapper).
|
|
5
|
+
* @param {String} cmd
|
|
6
|
+
* @return {Object} { stdout: String, stderr: String }
|
|
7
|
+
*/
|
|
8
|
+
async function sh(cmd) {
|
|
9
|
+
return new Promise(function (resolve, reject) {
|
|
10
|
+
exec(cmd, (err, stdout, stderr) => {
|
|
11
|
+
if (err) {
|
|
12
|
+
reject(err);
|
|
13
|
+
} else {
|
|
14
|
+
resolve({ stdout, stderr });
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
async function main() {
|
|
21
|
+
let { stdout } = await sh("pnpm run installer");
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
main();
|
package/package.json
CHANGED
|
@@ -1,28 +1,102 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"shell",
|
|
12
|
-
"homebrew",
|
|
13
|
-
"dotfiles-resources"
|
|
2
|
+
"author": "Sebastien Rousseau (https://github.com/sebastienrousseau)",
|
|
3
|
+
"autoupdate": {
|
|
4
|
+
"fileMap": [
|
|
5
|
+
{
|
|
6
|
+
"basePath": "dist",
|
|
7
|
+
"files": [
|
|
8
|
+
"**/*"
|
|
9
|
+
]
|
|
10
|
+
}
|
|
14
11
|
],
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
12
|
+
"source": "git",
|
|
13
|
+
"target": "git://github.com/sebastienrousseau/dotfiles.git"
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"dotfiles": "./index.js"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/sebastienrousseau/dotfiles/issues"
|
|
20
|
+
},
|
|
21
|
+
"contributors": [
|
|
22
|
+
"Graham Colgate (https://github.com/gramtech)"
|
|
23
|
+
],
|
|
24
|
+
"description": "Dotfiles - A set of macOS / Linux and Windows configuration files - Simply designed to fit your shell life.",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"filesizes": "^0.1.2",
|
|
27
|
+
"pnpm": "^7.13.0",
|
|
28
|
+
"rimraf": "^3.0.2"
|
|
29
|
+
},
|
|
30
|
+
"directories": {
|
|
31
|
+
"bin": "./bin",
|
|
32
|
+
"docs": "./docs",
|
|
33
|
+
"shell": "./shell"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"/index.js",
|
|
37
|
+
"/bin",
|
|
38
|
+
"/COPYRIGHT",
|
|
39
|
+
"/LICENSE",
|
|
40
|
+
"/Makefile",
|
|
41
|
+
"/package.json",
|
|
42
|
+
"/pnpm-lock.yaml",
|
|
43
|
+
"/pnpm-workspace.yaml",
|
|
44
|
+
"/README.md",
|
|
45
|
+
"/shell"
|
|
46
|
+
],
|
|
47
|
+
"homepage": "https://dotfiles.io/",
|
|
48
|
+
"keywords": [
|
|
49
|
+
"dotfiles",
|
|
50
|
+
"bash",
|
|
51
|
+
"bash-profile",
|
|
52
|
+
"macos",
|
|
53
|
+
"macosx",
|
|
54
|
+
"shell",
|
|
55
|
+
"homebrew",
|
|
56
|
+
"dotfiles-resources"
|
|
57
|
+
],
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"license_URI": "http://www.opensource.org/licenses/mit-license.php",
|
|
60
|
+
"main": "index.js",
|
|
61
|
+
"name": "@sebastienrousseau/dotfiles",
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public",
|
|
64
|
+
"registry": "https://npm.pkg.github.com/"
|
|
65
|
+
},
|
|
66
|
+
"repository": {
|
|
67
|
+
"type": "git",
|
|
68
|
+
"url": "git@github.com:sebastienrousseau/dotfiles.git"
|
|
69
|
+
},
|
|
70
|
+
"type": "module",
|
|
71
|
+
"version": "0.2.452",
|
|
72
|
+
"scripts": {
|
|
73
|
+
"backup": "pnpm run bk:dir && pnpm run bk:bsh && pnpm run bk:zsh",
|
|
74
|
+
"bk:bsh": "if [ -z $HOME/.bashrc ]; then mv -f $HOME/.bashrc $HOME/.dotfiles_backup/bashrc.bk; fi ",
|
|
75
|
+
"bk:dir": "if [ -d $HOME/.dotfiles ]; then mv -f $HOME/.dotfiles $HOME/dotfiles_backup; fi ",
|
|
76
|
+
"bk:zsh": "if [ -z $HOME/.zshrc ]; then mv -f $HOME/.zshrc $HOME/.dotfiles_backup/zshrc.bk; fi ",
|
|
77
|
+
"build": "pnpm run clean:dist && pnpm run cp:shell && pnpm run cp:bin && pnpm run cp:docs && pnpm run cp:make && pnpm run filesizes",
|
|
78
|
+
"clean:dist": "rimraf \"dist/\"",
|
|
79
|
+
"copy": "pnpm run cp:dirs && pnpm run cp:bash && pnpm run cp:prof && pnpm run cp:tmux && pnpm run cp:curl && pnpm run cp:jsht && pnpm run cp:inpt && pnpm run cp:cert && pnpm run cp:vimr && pnpm run cp:wget && pnpm run cp:zshr",
|
|
80
|
+
"cp:bash": "cp ./shell/configurations/bash/bashrc $HOME/.bashrc",
|
|
81
|
+
"cp:bin": "cp -R ./bin/ ./dist",
|
|
82
|
+
"cp:cert": "cp ./shell/configurations/curl/cacert.pem $HOME/cacert.pem",
|
|
83
|
+
"cp:curl": "cp ./shell/configurations/curl/curlrc $HOME/.curlrc",
|
|
84
|
+
"cp:dirs": "cp -R ./shell $HOME/.dotfiles/shell ",
|
|
85
|
+
"cp:docs": "cp -R ./docs ./dist/docs && cp ./README.md ./dist && cp ./LICENSE ./dist && cp ./COPYRIGHT ./dist",
|
|
86
|
+
"cp:inpt": "cp ./shell/configurations/inputrc/inputrc $HOME/.inputrc",
|
|
87
|
+
"cp:jsht": "cp ./shell/configurations/jshint/jshintrc $HOME/.jshintrc",
|
|
88
|
+
"cp:make": "cp ./Makefile ./dist",
|
|
89
|
+
"cp:prof": "cp ./shell/configurations/profile/profile $HOME/.profile",
|
|
90
|
+
"cp:shell": "cp -R ./shell/ ./dist",
|
|
91
|
+
"cp:tmux": "cp ./shell/configurations/tmux/tmux $HOME/.tmux.conf",
|
|
92
|
+
"cp:vimr": "cp ./shell/configurations/vim/vimrc $HOME/.vimrc",
|
|
93
|
+
"cp:wget": "cp ./shell/configurations/wget/wgetrc $HOME/.wgetrc",
|
|
94
|
+
"cp:zshr": "cp ./shell/configurations/zsh/zshrc $HOME/.zshrc",
|
|
95
|
+
"directory": "mkdir $HOME/.dotfiles",
|
|
96
|
+
"filesizes": "filesizes dist/ > dist/filesizes.txt",
|
|
97
|
+
"help": "sh ./bin/dotfiles.sh --help",
|
|
98
|
+
"installer": "pnpm run backup && pnpm run directory && pnpm run copy",
|
|
99
|
+
"start": "node index.js",
|
|
100
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
101
|
+
}
|
|
28
102
|
}
|
package/pnpm-lock.yaml
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
lockfileVersion: 5.4
|
|
2
|
+
|
|
3
|
+
importers:
|
|
4
|
+
|
|
5
|
+
.:
|
|
6
|
+
specifiers:
|
|
7
|
+
filesizes: ^0.1.2
|
|
8
|
+
pnpm: ^7.13.0
|
|
9
|
+
rimraf: ^3.0.2
|
|
10
|
+
devDependencies:
|
|
11
|
+
filesizes: 0.1.2
|
|
12
|
+
pnpm: 7.13.0
|
|
13
|
+
rimraf: 3.0.2
|
|
14
|
+
|
|
15
|
+
packages:
|
|
16
|
+
|
|
17
|
+
/ansi-styles/4.3.0:
|
|
18
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
19
|
+
engines: {node: '>=8'}
|
|
20
|
+
dependencies:
|
|
21
|
+
color-convert: 2.0.1
|
|
22
|
+
dev: true
|
|
23
|
+
|
|
24
|
+
/balanced-match/1.0.2:
|
|
25
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
26
|
+
dev: true
|
|
27
|
+
|
|
28
|
+
/brace-expansion/1.1.11:
|
|
29
|
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
|
30
|
+
dependencies:
|
|
31
|
+
balanced-match: 1.0.2
|
|
32
|
+
concat-map: 0.0.1
|
|
33
|
+
dev: true
|
|
34
|
+
|
|
35
|
+
/chalk/3.0.0:
|
|
36
|
+
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
|
|
37
|
+
engines: {node: '>=8'}
|
|
38
|
+
dependencies:
|
|
39
|
+
ansi-styles: 4.3.0
|
|
40
|
+
supports-color: 7.2.0
|
|
41
|
+
dev: true
|
|
42
|
+
|
|
43
|
+
/cli-table/0.3.11:
|
|
44
|
+
resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==}
|
|
45
|
+
engines: {node: '>= 0.2.0'}
|
|
46
|
+
dependencies:
|
|
47
|
+
colors: 1.0.3
|
|
48
|
+
dev: true
|
|
49
|
+
|
|
50
|
+
/color-convert/2.0.1:
|
|
51
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
52
|
+
engines: {node: '>=7.0.0'}
|
|
53
|
+
dependencies:
|
|
54
|
+
color-name: 1.1.4
|
|
55
|
+
dev: true
|
|
56
|
+
|
|
57
|
+
/color-name/1.1.4:
|
|
58
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
59
|
+
dev: true
|
|
60
|
+
|
|
61
|
+
/colors/1.0.3:
|
|
62
|
+
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
|
|
63
|
+
engines: {node: '>=0.1.90'}
|
|
64
|
+
dev: true
|
|
65
|
+
|
|
66
|
+
/commander/4.1.1:
|
|
67
|
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
68
|
+
engines: {node: '>= 6'}
|
|
69
|
+
dev: true
|
|
70
|
+
|
|
71
|
+
/concat-map/0.0.1:
|
|
72
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
73
|
+
dev: true
|
|
74
|
+
|
|
75
|
+
/duplexer/0.1.2:
|
|
76
|
+
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
|
|
77
|
+
dev: true
|
|
78
|
+
|
|
79
|
+
/filesizes/0.1.2:
|
|
80
|
+
resolution: {integrity: sha512-B7S28jvoR/mSmccYwh6jkZYvsmuXqULibMkT9rU4hYZfjHTk7bw8Zmygss9UNX49YbJirzvGb2MSh/CbSWKzzQ==}
|
|
81
|
+
hasBin: true
|
|
82
|
+
dependencies:
|
|
83
|
+
chalk: 3.0.0
|
|
84
|
+
cli-table: 0.3.11
|
|
85
|
+
commander: 4.1.1
|
|
86
|
+
gzip-size: 5.1.1
|
|
87
|
+
pretty-bytes: 5.6.0
|
|
88
|
+
dev: true
|
|
89
|
+
|
|
90
|
+
/fs.realpath/1.0.0:
|
|
91
|
+
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
|
92
|
+
dev: true
|
|
93
|
+
|
|
94
|
+
/glob/7.2.3:
|
|
95
|
+
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
96
|
+
dependencies:
|
|
97
|
+
fs.realpath: 1.0.0
|
|
98
|
+
inflight: 1.0.6
|
|
99
|
+
inherits: 2.0.4
|
|
100
|
+
minimatch: 3.1.2
|
|
101
|
+
once: 1.4.0
|
|
102
|
+
path-is-absolute: 1.0.1
|
|
103
|
+
dev: true
|
|
104
|
+
|
|
105
|
+
/gzip-size/5.1.1:
|
|
106
|
+
resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==}
|
|
107
|
+
engines: {node: '>=6'}
|
|
108
|
+
dependencies:
|
|
109
|
+
duplexer: 0.1.2
|
|
110
|
+
pify: 4.0.1
|
|
111
|
+
dev: true
|
|
112
|
+
|
|
113
|
+
/has-flag/4.0.0:
|
|
114
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
115
|
+
engines: {node: '>=8'}
|
|
116
|
+
dev: true
|
|
117
|
+
|
|
118
|
+
/inflight/1.0.6:
|
|
119
|
+
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
|
120
|
+
dependencies:
|
|
121
|
+
once: 1.4.0
|
|
122
|
+
wrappy: 1.0.2
|
|
123
|
+
dev: true
|
|
124
|
+
|
|
125
|
+
/inherits/2.0.4:
|
|
126
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
127
|
+
dev: true
|
|
128
|
+
|
|
129
|
+
/minimatch/3.1.2:
|
|
130
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
131
|
+
dependencies:
|
|
132
|
+
brace-expansion: 1.1.11
|
|
133
|
+
dev: true
|
|
134
|
+
|
|
135
|
+
/once/1.4.0:
|
|
136
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
137
|
+
dependencies:
|
|
138
|
+
wrappy: 1.0.2
|
|
139
|
+
dev: true
|
|
140
|
+
|
|
141
|
+
/path-is-absolute/1.0.1:
|
|
142
|
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
143
|
+
engines: {node: '>=0.10.0'}
|
|
144
|
+
dev: true
|
|
145
|
+
|
|
146
|
+
/pify/4.0.1:
|
|
147
|
+
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
|
|
148
|
+
engines: {node: '>=6'}
|
|
149
|
+
dev: true
|
|
150
|
+
|
|
151
|
+
/pnpm/7.13.0:
|
|
152
|
+
resolution: {integrity: sha512-n1oG3HAOIXuOpzQAMqaPTTKlP1lJBpj9p9EIom63WYiZmCl2GaTvrcDQ085MZRcb5buQxt5lYgfqXppkluB97A==}
|
|
153
|
+
engines: {node: '>=14.6'}
|
|
154
|
+
hasBin: true
|
|
155
|
+
dev: true
|
|
156
|
+
|
|
157
|
+
/pretty-bytes/5.6.0:
|
|
158
|
+
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
|
|
159
|
+
engines: {node: '>=6'}
|
|
160
|
+
dev: true
|
|
161
|
+
|
|
162
|
+
/rimraf/3.0.2:
|
|
163
|
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
|
164
|
+
hasBin: true
|
|
165
|
+
dependencies:
|
|
166
|
+
glob: 7.2.3
|
|
167
|
+
dev: true
|
|
168
|
+
|
|
169
|
+
/supports-color/7.2.0:
|
|
170
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
171
|
+
engines: {node: '>=8'}
|
|
172
|
+
dependencies:
|
|
173
|
+
has-flag: 4.0.0
|
|
174
|
+
dev: true
|
|
175
|
+
|
|
176
|
+
/wrappy/1.0.2:
|
|
177
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
178
|
+
dev: true
|
package/shell/README.md
ADDED