{
    "name": "@crestron/ch5-utilities-cli", 
    "version": "2.19.0", 
    "description": "CH5 Utilities CLI for archiving and distribution", 
    "repository": {
        "type": "git", 
        "url": "https://github.com/Crestron/CH5Utilities.git"
    }, 
    "main": "./build/index.js", 
    "bin": {
        "ch5-cli": "./build/index.js"
    }, 
    "types": "build/@types/index.d.ts", 
    "scripts": {
        "build": "npm run clean && npm run tsc", 
        "ch5-utils": "./build/index.js", 
        "clean": "rimraf build", 
        "publish:local": "npm run build && npm unlink && npm link", 
        "publish:local:watch": "nodemon --watch 'src/**/*.ts' --exec 'npm run publish:local'", 
        "setup:local": "npm install && npm link @crestron/ch5-utilities && npm run build && npm link", 
        "start": "ts-node src/index.ts", 
        "start:js": "node build/index.js", 
        "start:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts", 
        "tsc": "tsc --declaration --declarationDir build/@types"
    }, 
    "keywords": [
        "ch5", 
        "ch5z", 
        "cli"
    ], 
    "author": "Crestron", 
    "license": "SEE LICENSE IN LICENSE.txt", 
    "dependencies": {
        "@crestron/ch5-utilities": "2.19.0", 
        "chalk": "^4.1.2", 
        "clear": "^0.1.0", 
        "commander": "^8.3.0", 
        "inquirer": "^8.2.0"
    }, 
    "devDependencies": {
        "@types/node": "^14.14.35", 
        "nodemon": "^2.0.6", 
        "rimraf": "^2.6.3", 
        "ts-node": "^8.1.0", 
        "typescript": "^4.2.3", 
        "typings": "^2.1.1"
    }, 
    "files": [
        "build/**/*", 
        "LICENSE.txt", 
        "readme.md"
    ]
}