this repo has no description
1{
2 "name": "shell-casing",
3 "version": "0.1.1",
4 "description": "A lightweight CLI framework for organizing commands into a file-based structure",
5 "type": "module",
6 "main": "dist/index.js",
7 "types": "dist/index.d.ts",
8 "files": [
9 "dist"
10 ],
11 "keywords": [
12 "cli",
13 "framework",
14 "commands",
15 "file-based",
16 "typescript"
17 ],
18 "author": "tbeseda",
19 "license": "MIT",
20 "dependencies": {
21 "@bomb.sh/args": "^0.3.1"
22 },
23 "scripts": {
24 "test": "node --test index.test.ts",
25 "lint": "biome ci",
26 "prebuild": "rm -rf dist",
27 "build": "tsc"
28 },
29 "devDependencies": {
30 "@biomejs/biome": "^2.2.0",
31 "@types/node": "^24.2.1",
32 "typescript": "^5.9.2"
33 }
34}