-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 877 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
{
"name": "print-pretty-tree",
"version": "0.0.4",
"description": "A simple Python script that displays the directory tree of the current working directory with color-coded output for easy file identification.",
"keywords": [
"directory, tree, pretty-print, file-system, visualization, color-coded, file-identification, command-line, CLI, directory-structure"
],
"author": {
"name": "itsbrex",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/itsbrex/print-pretty-tree.git"
},
"main": "ptree.py",
"license": "MIT",
"scripts": {
"pt": "python3 ptree.py",
"ptree": "python3 ptree.py"
},
"homepage": "https://github.com/itsbrex/print-pretty-tree",
"bugs": {
"url": "https://github.com/itsbrex/print-pretty-tree/issues"
},
"publishConfig": {
"access": "public"
}
}