-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@pavan-kumar-kn/folder_mapper",
"version": "1.0.0",
"description": "Generate beautiful directory tree structures for documentation",
"main": "./dist/index.js",
"bin": {
"folder_mapper": "./dist/index.js",
"folder_mapper_dev": "./dev.ts"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"prepublishOnly": "npm run clean && npm run build",
"dev": "bun run index.ts",
"dev:watch": "bun --watch index.ts",
"dev:link": "bun link",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"prepack": "npm run build"
},
"dependencies": {
"ora": "^9.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"typescript": "^5.9.3"
},
"keywords": [
"cli",
"cli-tool",
"tree",
"documentation",
"folder-structure",
"directory-tree",
"file-tree",
"tree-generator",
"folder-tree",
"project-structure",
"markdown",
"readme",
"gitignore"
],
"repository": {
"type": "git",
"url": "https://github.com/Pavan-Kumar-KN/folder_mapper.git"
},
"author": "Pavan Kumar KN",
"license": "MIT"
}