http-client/package.json
2026-01-21 12:01:07 -08:00

42 lines
999 B
JSON

{
"name": "@lilith/http-client",
"version": "1.0.0",
"type": "module",
"description": "Shared API client utilities (axios instance factory) - generic HTTP client",
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me",
"url": "https://github.com/transquinnftw"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"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",
"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.nasty.sh/api/packages/lilith/npm/"
}
}