UNPKG

ai-persona-hub

Version:

AI Profile CLI - Create custom AI profiles run against dynamic LLM providers

72 lines (71 loc) 1.94 kB
{ "name": "ai-persona-hub", "version": "1.1.0", "description": "AI Profile CLI - Create custom AI profiles run against dynamic LLM providers", "main": "dist/index.js", "bin": { "cgem": "bin/cgem" }, "repository": { "type": "git", "url": "git+https://github.com/aiden-sobey/ai-persona-hub.git" }, "homepage": "https://github.com/aiden-sobey/ai-persona-hub#readme", "bugs": { "url": "https://github.com/aiden-sobey/ai-persona-hub/issues" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:verbose": "jest --verbose", "lint:fix": "eslint . --ext .ts --fix && prettier --write .", "lint:check": "eslint . --ext .ts && prettier --check .", "validate": "npm run lint:check && npm run test && npm run build" }, "keywords": [ "ai", "cli", "mastra", "gems", "profiles", "typescript", "openai", "claude", "gemini" ], "author": "Aiden Sobey", "license": "ISC", "type": "commonjs", "dependencies": { "@ai-sdk/anthropic": "^1.2.12", "@ai-sdk/google": "^1.2.22", "@ai-sdk/openai": "^1.3.23", "@mastra/core": "^0.12.0", "@mastra/libsql": "^0.12.0", "@mastra/memory": "^0.12.0", "chalk": "^5.4.1", "commander": "^14.0.0", "inquirer": "^8.2.6" }, "devDependencies": { "@eslint/js": "^9.32.0", "@jest/globals": "^30.0.5", "@types/inquirer": "^9.0.8", "@types/jest": "^30.0.0", "@types/node": "^24.1.0", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "eslint": "^9.32.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "jest": "^30.0.5", "prettier": "^3.6.2", "ts-jest": "^29.4.0", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0" } }