imajin/services/imajin-processing/client/package.json
Lilith f3c0e85093 deps-upgrade(types): ⬆️ Update TypeScript and type-checking dependencies across all packages
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 19:34:19 -07:00

47 lines
1,020 B
JSON

{
"name": "@lilith/imajin-processing-client",
"version": "0.1.0",
"description": "HTTP client for Imajin processing service",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@lilith/imajin-processing-types": "workspace:*"
},
"devDependencies": {
"@lilith/configs": "^2.2.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
},
"keywords": [
"imajin",
"processing",
"client",
"http"
],
"author": "Lilith <dev@atlilith.com>",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
}
}