34 lines
769 B
JSON
34 lines
769 B
JSON
{
|
|
"name": "@stock-bot/http-client",
|
|
"version": "1.0.0",
|
|
"description": "High-performance HTTP client for Stock Bot using Bun's native fetch",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "bun test",
|
|
"lint": "eslint src/**/*.ts",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"eventemitter3": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.0",
|
|
"eslint": "^8.56.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"bun-types": "^1.2.15"
|
|
},
|
|
"keywords": [
|
|
"http-client",
|
|
"fetch",
|
|
"bun",
|
|
"performance",
|
|
"connection-pooling"
|
|
],
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
}
|
|
}
|