|
| 1 | +{ |
| 2 | + "name": "@huggingface/tiny-agents", |
| 3 | + "packageManager": "[email protected]", |
| 4 | + "version": "0.1.0", |
| 5 | + "description": "Lightweight, composable agents for AI applications", |
| 6 | + "repository": "https://github.com/huggingface/huggingface.js.git", |
| 7 | + "publishConfig": { |
| 8 | + "access": "public" |
| 9 | + }, |
| 10 | + "main": "./dist/index.js", |
| 11 | + "module": "./dist/index.mjs", |
| 12 | + "types": "./dist/index.d.ts", |
| 13 | + "bin": { |
| 14 | + "tiny-agents": "./dist/cli.js" |
| 15 | + }, |
| 16 | + "exports": { |
| 17 | + ".": { |
| 18 | + "types": "./dist/index.d.ts", |
| 19 | + "require": "./dist/index.js", |
| 20 | + "import": "./dist/index.mjs" |
| 21 | + } |
| 22 | + }, |
| 23 | + "engines": { |
| 24 | + "node": ">=18" |
| 25 | + }, |
| 26 | + "source": "index.ts", |
| 27 | + "scripts": { |
| 28 | + "lint": "eslint --quiet --fix --ext .cjs,.ts .", |
| 29 | + "lint:check": "eslint --ext .cjs,.ts .", |
| 30 | + "format": "prettier --write .", |
| 31 | + "format:check": "prettier --check .", |
| 32 | + "prepublishOnly": "pnpm run build", |
| 33 | + "build": "tsup src/index.ts --format cjs,esm --clean && tsc --emitDeclarationOnly --declaration", |
| 34 | + "prepare": "pnpm run build", |
| 35 | + "test": "vitest run", |
| 36 | + "check": "tsc", |
| 37 | + "cli": "tsx cli.ts" |
| 38 | + }, |
| 39 | + "files": [ |
| 40 | + "src", |
| 41 | + "dist", |
| 42 | + "tsconfig.json" |
| 43 | + ], |
| 44 | + "keywords": [ |
| 45 | + "huggingface", |
| 46 | + "agent", |
| 47 | + "ai", |
| 48 | + "llm", |
| 49 | + "tiny-agent" |
| 50 | + ], |
| 51 | + "author": "Hugging Face", |
| 52 | + "license": "MIT", |
| 53 | + "dependencies": { |
| 54 | + "@huggingface/inference": "workspace:^", |
| 55 | + "@huggingface/mcp-client": "workspace:^" |
| 56 | + } |
| 57 | +} |
0 commit comments