-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.45 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.45 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
{
"name": "treeex",
"version": "1.0.1",
"description": "CLI tool that analyzes directory structure and outputs a JSON tree",
"module": "index.ts",
"type": "module",
"bin": {
"treeEx": "./index.ts"
},
"scripts": {
"start": "bun run index.ts",
"build": "bun build index.ts --compile --outfile build/treeEx",
"build:linux": "bun build index.ts --compile --target=bun-linux-x64 --outfile build/treeEx-linux-x64",
"build:linux-arm": "bun build index.ts --compile --target=bun-linux-arm64 --outfile build/treeEx-linux-arm64",
"build:macos": "bun build index.ts --compile --target=bun-darwin-x64 --outfile build/treeEx-darwin-x64",
"build:macos-arm": "bun build index.ts --compile --target=bun-darwin-arm64 --outfile build/treeEx-darwin-arm64",
"build:windows": "bun build index.ts --compile --target=bun-windows-x64 --outfile build/treeEx-windows-x64.exe",
"build:all": "bun run build:linux && bun run build:linux-arm && bun run build:macos && bun run build:macos-arm && bun run build:windows",
"build:clean": "rm -rf build/",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome check . --write",
"check": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/bun": "latest"
},
"dependencies": {
"commander": "^14.0.2"
},
"peerDependencies": {
"typescript": "^5"
},
"keywords": [
"cli",
"directory",
"tree",
"json",
"filesystem",
"tool"
],
"author": "Pratik Dev",
"license": "MIT"
}