UNPKG

fr3kc0d3

Version:

Personal AI Infrastructure (PAI) - Complete implementation of Daniel Miessler's PAI vision with 4-layer context enforcement, FOBs system, flow orchestration, and Kai digital assistant

124 lines (123 loc) 2.68 kB
{ "name": "fr3kc0d3", "version": "2.27.0", "description": "Personal AI Infrastructure (PAI) - Complete implementation of Daniel Miessler's PAI vision with 4-layer context enforcement, FOBs system, flow orchestration, and Kai digital assistant", "license": "MIT", "author": "fr3k", "homepage": "https://github.com/fr3k/fr3kc0de", "repository": { "type": "git", "url": "https://github.com/fr3k/fr3kc0de.git" }, "bugs": { "url": "https://github.com/fr3k/fr3kc0de/issues" }, "keywords": [ "ai", "cli", "personal-ai-infrastructure", "pai", "daniel-miessler", "nexus", "fobs", "flow-orchestration", "kai-assistant", "4-layer-enforcement", "context-management", "digital-assistant", "ai-workflows", "dynamic-hooks", "mcp", "multi-provider", "groq", "openrouter", "deepseek", "assistant", "automation", "typescript" ], "bin": { "fr3kc0d3": "./bin/fr3kc0de" }, "type": "module", "engines": { "node": ">=16" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "prepublishOnly": "npm run build", "prepack": "npm run build", "postinstall": "node scripts/postinstall.cjs", "setup": "node scripts/setup.cjs", "test": "ava", "test:watch": "ava --watch", "test:verbose": "ava --verbose", "test-global": "node bin/fr3kc0de --help" }, "files": [ "bin/", "dist/", "src/", "mcp-servers/", "scripts/", "patterns/", "README.md", "CHANGELOG.md", "DEVELOPMENT.md", "tsconfig.json" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "@qdrant/qdrant-js": "^1.15.1", "@types/acorn": "^4.0.6", "acorn": "^8.15.0", "axios": "^1.6.0", "chalk": "^5.4.1", "chartscii": "^3.2.0", "commander": "^14.0.0", "eventemitter3": "^5.0.1", "groq-sdk": "^0.27.0", "ink": "^6.0.1", "ioredis": "^5.7.0", "jsonwebtoken": "^9.0.2", "neo4j-driver": "^5.28.1", "node-fetch": "^3.3.2", "openai": "^4.52.7", "pg": "^8.16.3", "react": "^19.1.0" }, "devDependencies": { "@sindresorhus/tsconfig": "^3.0.1", "@types/jsonwebtoken": "^9.0.10", "@types/react": "^19.1.8", "@types/yargs": "^17.0.33", "@vdemedes/prettier-config": "^2.0.1", "ava": "^5.2.0", "eslint-config-xo-react": "^0.27.0", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "prettier": "^2.8.7", "ts-node": "^10.9.1", "tsx": "^4.16.2", "typescript": "^5.9.2", "xo": "^0.60.0" }, "ava": { "extensions": { "ts": "module", "tsx": "module" }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "extends": "xo-react", "prettier": true, "rules": { "react/prop-types": "off" } }, "prettier": "@vdemedes/prettier-config" }