http-client/package.json
autocommit 764b675653
Some checks failed
Build and Publish / build-and-publish (push) Failing after 44s
deps-upgrade(deps): ⬆️ Update dependency versions in package.json for minor/patch upgrades
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:31:03 -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": "quinn@ftw.codes",
"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.lan/api/packages/lilith/npm/"
}
}