api-explorer-cli
Version:
A CLI tool to proxy localhost API requests for the API Explorer web app
38 lines (37 loc) • 858 B
JSON
{
"name": "api-explorer-cli",
"version": "1.0.2",
"description": "A CLI tool to proxy localhost API requests for the API Explorer web app",
"main": "index.js",
"type": "module",
"bin": {
"api-explorer-cli": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo 'No tests implemented yet' && exit 0"
},
"keywords": [
"api",
"localhost",
"proxy",
"cli",
"api-explorer",
"developer-tools"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/api-explorer-cli.git"
},
"homepage": "https://github.com/your-username/api-explorer-cli#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.0"
}
}