UNPKG

prompt-version-manager

Version:

Centralized prompt management system for Human Behavior AI agents

98 lines (97 loc) 2.57 kB
{ "name": "prompt-version-manager", "version": "0.1.4", "description": "Centralized prompt management system for Human Behavior AI agents", "main": "dist/src/typescript/index.js", "types": "dist/src/typescript/index.d.ts", "exports": { ".": { "require": "./dist/src/typescript/index.js", "import": "./dist/src/typescript/index.js", "types": "./dist/src/typescript/index.d.ts" } }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "dashboard": "ts-node src/typescript/visualization/dashboard.ts", "dashboard:web": "ts-node src/typescript/visualization/dashboard-server.ts", "postinstall": "node scripts/postinstall.js || true" }, "bin": { "pvm": "./dist/src/typescript/cli/main.js", "pvm-setup-ts": "./scripts/setup-typescript.js" }, "keywords": [ "ai", "prompts", "workflow", "human-behavior", "version-control" ], "author": "HB Team", "license": "MIT", "files": [ "dist/", "common/", "interfaces/", "scripts/", "README.md" ], "dependencies": { "@anthropic-ai/sdk": "^0.57.0", "@google/generative-ai": "^0.24.0", "@types/crypto-js": "^4.2.2", "@types/js-yaml": "^4.0.9", "@types/marked": "^5.0.2", "@types/node": "^20.0.0", "blessed": "^0.1.81", "blessed-contrib": "^4.11.0", "chalk": "^5.3.0", "commander": "^11.0.0", "crypto-js": "^4.2.0", "d3": "^7.9.0", "dotenv": "^16.3.0", "express": "^4.21.2", "inquirer": "^9.2.0", "js-yaml": "^4.1.0", "marked": "^4.3.0", "node-fetch": "^3.3.0", "openai": "^5.0.0", "ora": "^7.0.0", "sqlite3": "^5.1.0", "tsx": "^4.0.0", "typescript": "^5.0.0", "uuid": "^9.0.1", "ws": "^8.18.3" }, "devDependencies": { "@types/blessed": "^0.1.25", "@types/d3": "^7.4.3", "@types/express": "^4.17.23", "@types/inquirer": "^9.0.0", "@types/jest": "^29.5.8", "@types/node": "^20.10.5", "@types/sqlite3": "^3.1.0", "@types/uuid": "^9.0.8", "@types/ws": "^8.18.1", "@typescript-eslint/eslint-plugin": "^6.13.1", "@typescript-eslint/parser": "^6.13.1", "eslint": "^8.55.0", "jest": "^29.7.0", "prettier": "^3.1.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.0", "typescript": "^5.3.3" }, "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "https://github.com/human-behavior/prompt-version-control.git" } }