Files
code-server/cli/package.json
Bruno Quaresma 0cedc1485c Add deploy cli [WIP] (#59)
* Add deploy cli

* add development instructions

* Fix async runner and add extra token info

* Add prettier

* Move prettier config

* Add Prettier and pre-commit linting

* Remove package.json

* Move Prettier config to cli

* Pull version from package.json

* Get description from package.json

* Update package info

* Update package name

* Add cli to coder org

Co-authored-by: Ben Potter <me@bpmct.net>
2021-08-24 15:14:54 -03:00

34 lines
786 B
JSON

{
"name": "@coder/deploy-code-server",
"version": "0.1.0",
"repository": "cdr/deploy-code-server",
"homepage": "https://github.com/cdr/deploy-code-server",
"description": "CLI to deploy code-server",
"main": "bin/index.js",
"bin": "bin/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "yarn build"
},
"keywords": ["code-server", "coder"],
"author": "coder",
"publishConfig": {
"access": "public"
},
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^7.3.3",
"@types/node": "^14.14.20",
"typescript": "^4.1.3"
},
"dependencies": {
"async-wait-until": "^2.0.7",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"got": "^11.8.2",
"inquirer": "^8.1.2",
"ora": "^5.4.1"
}
}