UNPKG

@isdk/ai-tool-llm-llamacpp-pro

Version:
81 lines 2.36 kB
{ "name": "@isdk/ai-tool-llm-llamacpp-pro", "version": "0.1.26", "author": "Riceball LEE <snowyu.lee@gmail.com>", "homepage": "https://github.com/isdk/ai-tool-llm-llamacpp.js", "repository": { "type": "git", "url": "git://github.com/isdk/ai-tool-llm-llamacpp.js.git" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "dependencies": { "@isdk/ai-tool": "0.6.0", "@isdk/ai-tool-sqlite": "0.1.13", "@isdk/ai-tool-llm": "0.1.10" }, "devDependencies": { "@antfu/eslint-config": "^3.6.2", "@huggingface/hub": "^0.15.2", "@types/better-sqlite3": "^7.6.11", "@types/jest": "^29.5.13", "@typescript-eslint/eslint-plugin": "^8.6.0", "eslint": "^9.10.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-tsdoc": "^0.3.0", "prettier": "^3.3.3", "terser": "^5.32.0", "tsup": "^8.2.4", "tsx": "^4.19.1", "typedoc": "^0.27.7", "typedoc-plugin-markdown": "^4.4.2", "typescript": "^5.7.3", "vite": "^5.4.6", "vitest": "^2.1.1", "vitest-fetch-mock": "^0.3.0", "zod": "^3.23.8", "@isdk/ai-tool-prompt": "0.3.7" }, "files": [ "docs", "dist" ], "keywords": [ "ai", "ai-tool", "tool", "llm", "llamacpp", "llama.cpp" ], "maintainers": [ "Riceball LEE <snowyu.lee@gmail.com>" ], "engines": { "node": ">=20.11.1" }, "types": "./dist/index.d.ts", "scripts": { "build-fast": "tsup", "build": "pnpm run build-fast --dts-resolve --dts && pnpm run doc:md", "clean": "rm -fr web docs dist", "doc": "typedoc --plugin none --out web", "doc:md": "typedoc --plugin typedoc-plugin-markdown --out docs", "style": "pnpm run format -c && pnpm run lint", "style:fix": "pnpm run format:fix && npm run lint:fix", "format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"", "format:fix": "pnpm run format --write", "lint": "eslint .", "lint:fix": "pnpm run lint --fix", "test": "vitest run", "release": "pnpm run clean && pnpm run build && git add -f docs && git ci -m 'docs: update API docs' && pnpm dlx commit-and-tag-version -s", "release.alpha": "pnpm run release -- --prerelease alpha" } }