72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "goalie",
|
|
"version": "1.3.1",
|
|
"description": "AI-powered research assistant with REAL Ed25519 cryptographic signatures, GOAP planning, and Perplexity API integration",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"goalie": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/cli.js",
|
|
"test": "jest",
|
|
"lint": "eslint src/**/*.ts",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run clean && npm run build",
|
|
"postpublish": "echo 'Successfully published goalie to npm!'"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"goap",
|
|
"planning",
|
|
"ai",
|
|
"search",
|
|
"perplexity",
|
|
"ed25519",
|
|
"cryptography",
|
|
"anti-hallucination",
|
|
"strange-loops"
|
|
],
|
|
"author": "rUv <hello@ruv.net> (https://github.com/ruvnet)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ruvnet/goalie.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/goalie/issues"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/goalie#readme",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"@noble/ed25519": "^3.0.0",
|
|
"axios": "^1.6.0",
|
|
"commander": "^11.0.0",
|
|
"dotenv": "^16.3.0",
|
|
"winston": "^3.11.0",
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.0.0",
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.0.0",
|
|
"jest": "^29.0.0",
|
|
"ts-jest": "^29.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"README.md",
|
|
"ED25519-USAGE.md",
|
|
"VALIDATION-REPORT.md",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|