{ "name": "agent-skills-eval", "version": "0.1.1", "description": "TypeScript SDK and CLI for evaluating agentskills.io-style AI agent skills with LLM judges, baseline comparison, YAML config, JSONL logs, and HTML reports.", "type": "module", "author": { "name": "Rishabh Mehan", "url": "https://github.com/darkrishabh" }, "sideEffects": false, "bin": { "agent-skills-eval": "dist/cli.js" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./provider": { "import": "./dist/provider.js", "types": "./dist/provider.d.ts" }, "./openai-compatible": { "import": "./dist/openai-compatible-provider.js", "types": "./dist/openai-compatible-provider.d.ts" }, "./config": { "import": "./dist/config.js", "types": "./dist/config.d.ts" }, "./reporters": { "import": "./dist/jsonl-reporter.js", "types": "./dist/jsonl-reporter.d.ts" } }, "files": [ "dist", "examples", "README.md", "CHANGELOG.md", "CONTRIBUTING.md", "CODE_OF_CONDUCT.md", "SECURITY.md", "LICENSE" ], "scripts": { "build": "tsc -p tsconfig.json", "typecheck": "tsc -p tsconfig.json --noEmit", "test": "npm run build && node --test test/*.test.mjs", "clean": "rm -rf dist", "prepack": "npm run build", "prepublishOnly": "npm test" }, "keywords": [ "agent-skills-eval", "agentskills.io", "agentskills", "agent-skills", "agent-skills-sdk", "ai-skills", "skills-eval", "skills-evaluation", "skill-evaluator", "agent-eval", "agent-evals", "ai-eval", "ai-evals", "llm-eval", "llm-evals", "llm-evaluation", "model-evaluation", "model-benchmark", "evals", "evaluation", "llm", "ai", "agent", "benchmark", "openai", "openai-compatible", "yaml", "jsonl", "html-report", "typescript", "cli" ], "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/darkrishabh/agent-skills-eval.git" }, "bugs": { "url": "https://github.com/darkrishabh/agent-skills-eval/issues" }, "homepage": "https://darkrishabh.github.io/agent-skills-eval/", "funding": { "type": "github", "url": "https://github.com/sponsors/darkrishabh" }, "publishConfig": { "access": "public" }, "dependencies": { "commander": "^12.1.0", "js-yaml": "^4.1.1" }, "devDependencies": { "@types/js-yaml": "^4.0.9", "@types/node": "^25.6.0", "typescript": "^6.0.3" }, "engines": { "node": ">=18" }, "packageManager": "npm@10.9.2" }