UNPKG

@lunos/client

Version:

Official TypeScript client library for Lunos AI API - A comprehensive AI proxy service supporting chat completions, image generation, audio synthesis, embeddings, and more.

82 lines (81 loc) 2.01 kB
{ "name": "@lunos/client", "version": "1.4.0", "description": "Official TypeScript client library for Lunos AI API - A comprehensive AI proxy service supporting chat completions, image generation, audio synthesis, embeddings, and more.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "homepage": "https://lunos.tech/docs", "repository": { "type": "git", "url": "git+https://github.com/lunos-tech/client-js.git" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "type-check": "tsc --noEmit" }, "keywords": [ "AI", "LLM", "OpenAI", "Claude", "Llama", "Mistral", "Qwen", "DeepSeek", "Gemini", "Lunos", "machine learning", "generative AI", "chat completions", "image generation", "text-to-speech", "embeddings", "typescript", "api client" ], "author": "superXdev", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^24.0.13", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "peerDependencies": { "typescript": ">=4.9.0" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "dependencies": { "wav-encoder": "^1.3.0" } }