http-client/package.json
Lilith 4eec690d16 deps-upgrade(deps): ⬆️ Update dependencies to latest versions for security patches and bug fixes
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 19:24:06 -07:00

46 lines
1.1 KiB
JSON

{
"name": "@lilith/http-client",
"version": "2.0.0",
"type": "module",
"description": "Minimal HTTP client (transport layer only) - use @lilith/http-auth-interceptor for authentication",
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me",
"url": "https://github.com/transquinnftw"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"test": "vitest run --passWithNoTests",
"lint": "eslint . --fix"
},
"dependencies": {
"axios": "^1.13.2"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^20.19.28",
"eslint": "^9.39.2",
"tsup": "^8.3.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^5.4.21",
"vitest": "^2.1.9"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
}
}