-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "@1amlabs/tree-visualizer",
"version": "1.1.2",
"main": "dist/cli.js",
"type": "module",
"bin": {
"tree-visualizer": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"tree",
"visualizer",
"cli",
"typescript",
"file system",
"directory structure",
"command line tool"
],
"author": "",
"license": "MIT",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/1AMLabs/tree-visualizer.git"
},
"bugs": {
"url": "https://github.com/1AMLabs/tree-visualizer/issues"
},
"homepage": "https://github.com/1AMLabs/tree-visualizer#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.0",
"minimatch": "^10.0.3",
"mock-fs": "^5.5.0",
"moment": "^2.30.1"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/commander": "^2.12.0",
"@types/jest": "^30.0.0",
"@types/minimatch": "^5.1.2",
"@types/mock-fs": "^4.13.4",
"@types/node": "^24.0.3",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}