neuronagent
Version:
AI agent for Internet Computer governance and neuron management
63 lines • 1.44 kB
JSON
{
"name": "neuronagent",
"version": "1.0.1",
"description": "AI agent for Internet Computer governance and neuron management",
"type": "module",
"main": "mod.js",
"bin": {
"neuronagent": "./mod.ts"
},
"scripts": {
"start": "deno run --allow-net --allow-read --allow-write --allow-env mod.ts",
"build": "deno compile --allow-net --allow-read --allow-write --allow-env --output oscillum mod.ts",
"serve": "deno run --allow-net --allow-read --allow-write --allow-env web.ts"
},
"dependencies": {
"@dfinity/agent": "^0.20.0",
"@dfinity/identity": "^0.20.0",
"@dfinity/principal": "^0.20.0",
"express": "^4.18.2",
"openai": "^4.98.0"
},
"devDependencies": {
"vite": "^4.5.14",
"typescript": "^5.0.0"
},
"engines": {
"deno": ">=1.36.0"
},
"denoExports": {
"./agent": "./agent.ts",
"./web": "./web.ts",
"./db": "./db.ts",
"./identity": "./identity.ts"
},
"exports": {
".": "./mod.js",
"./agent": "./agent.js",
"./web": "./web.js",
"./db": "./db.js",
"./identity": "./identity.js"
},
"files": [
"*.js",
"*.ts",
"public/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/neuronagent.git"
},
"keywords": [
"internet-computer",
"governance",
"ai",
"dfinity",
"icp",
"voting",
"neuron"
],
"author": "",
"license": "MIT"
}