UNPKG

ai-fetcher

Version:

A Node.js package that provides integration with popular language models. It is designed to facilitate easy and efficient ai-fetching tasks for your application.

51 lines (50 loc) 1.39 kB
{ "name": "ai-fetcher", "version": "0.3.5", "description": "A Node.js package that provides integration with popular language models. It is designed to facilitate easy and efficient ai-fetching tasks for your application.", "main": "./dist/esm/index.js", "exports": { ".": { "require": "./dist/cjs/index.cjs", "import": "./dist/esm/index.js" } }, "type": "module", "types": "./dist/types/index.d.ts", "license": "MIT", "author": { "name": "Terrence Ou", "url": "https://github.com/terrence-ou" }, "repository": "github:terrence-ou/ai-fetcher", "keywords": [ "typescript", "DeepL", "Claude" ], "files": [ "dist" ], "scripts": { "test": "vitest", "coverage": "vitest run --coverage", "build:cjs": "tsc -p tsconfig.cjs.json && npm run rename:cjs && node ./scripts/replace-js-with-cjs.js", "build:esm": "tsc -p tsconfig.esm.json", "build": "npm run clean && npm run build:cjs && npm run build:esm", "clean": "rm -rf ./dist/", "rename:cjs": "/bin/zsh ./scripts/fix-cjs.sh", "lint": "eslint src --fix" }, "devDependencies": { "@eslint/js": "^9.9.0", "@vitest/coverage-v8": "^2.0.5", "eslint": "^9.9.0", "globals": "^15.9.0", "msw": "^2.4.4", "typescript": "^5.5.4", "typescript-eslint": "^8.2.0" }, "dependencies": { "axios": "^1.7.5" } }