47 lines
1,018 B
JSON
47 lines
1,018 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": "https://forge.nasty.sh/api/packages/lilith/npm/"
|
|
}
|
|
}
|