@httpc/cli
Version:
httpc cli for building function-based API with minimal code and end-to-end type safety
60 lines • 1.37 kB
JSON
{
"name": "@httpc/cli",
"description": "httpc cli for building function-based API with minimal code and end-to-end type safety",
"version": "0.1.0",
"author": {
"name": "Giuseppe La Torre",
"url": "https://github.com/giuseppelt"
},
"license": "MIT",
"main": "dist/index.js",
"bin": {
"httpc": "dist/index.js"
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=16.13.0"
},
"homepage": "https://httpc.dev",
"repository": {
"type": "git",
"url": "https://github.com/giuseppelt/httpc.git",
"directory": "packages/cli"
},
"bugs": "https://github.com/giuseppelt/httpc/issues",
"keywords": [
"httpc",
"api",
"rpc",
"rpc-api",
"json",
"json-api",
"typescript",
"javascript",
"client-generation"
],
"dependencies": {
"@httpc/client": "^0.1.0",
"commander": "^9.5.0",
"cross-fetch": "^3.1.5",
"giget": "^1.0.0",
"kleur": "^4.1.5",
"prompts": "^2.4.2",
"reflect-metadata": "^0.1.13",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/node": "^16.18.11",
"@types/prompts": "^2.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json && node tasks/export-version.js",
"start:dev": "ts-node --files src/index.ts"
}
}