๐Ÿ“ฆ justjake / ts-cli

๐Ÿ“„ package.json ยท 34 lines
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{
  "name": "@jitl/cli",
  "version": "0.1.0",
  "description": "Straightforward and typesafe command-line argument parsing with subcommands.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/justjake/ts-cli",
  "author": "Jake Teton-Landis <just.1.jake@gmail.com>",
  "license": "MIT",
  "private": false,
  "scripts": {
    "prepare": "npm run build",
    "clean": "rm -rf ./dist ./tmp",
    "build": "tsc -p ./tsconfig.json"
  },
  "engines": {
    "node": ">= 10.0.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^7.0.0",
    "@types/inquirer": "^6.0.3",
    "@types/table": "^4.0.5",
    "@types/minimist": "^1.2.0",
    "typescript": "^3.5.1"
  },
  "dependencies": {
    "chalk": "^2.4.2",
    "fs-extra": "^8.0.1",
    "inquirer": "^6.3.1",
    "minimist": "^1.2.0",
    "table": "^5.4.0"
  }
}