-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
35
36
37
38
39
40
41
42
43
44
{
"name": "fluxapi-cli",
"version": "1.0.0",
"description": "A lightweight, cross-platform command-line interface for interacting with APIs. Built as a companion to the FluxAPI Desktop client, it allows developers and testers to send HTTP requests, inspect responses, and manage API workflows directly from the terminal.",
"main": "index.js",
"bin": {
"fluxapi": "./bin/fluxapi"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "ts-node src/index.ts",
"prepare": "pnpm run build",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"cli",
"fluxapi",
"api",
"httpie",
"curl",
"rest",
"restful"
],
"author": "M-Skilla",
"license": "MIT",
"packageManager": "pnpm@10.17.0",
"dependencies": {
"@inquirer/prompts": "^7.8.6",
"axios": "^1.12.2",
"chalk": "^5.6.2",
"clipboardy": "^4.0.0",
"commander": "^14.0.1",
"conf": "^14.0.0",
"dotenv": "^17.2.2",
"json-colorizer": "^3.0.1",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}