-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "oaa-api-library",
"version": "0.1.0",
"description": "A comprehensive library for the Open Agent Architecture (OAA) system",
"main": "src/core/server.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:quest-verifier": "node src/scripts/test-quest-verifier.mjs",
"test:quest-verifier:verbose": "node src/scripts/test-quest-verifier.mjs --verbose",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"eomm-sync": "node src/scripts/eomm-sync.mjs",
"citation-hygiene": "bash src/scripts/citation-hygiene.sh",
"hmac:note": "node scripts/hmacNote.mjs",
"postinstall": "node scripts/initAgentGuards.mjs && npx prisma generate",
"predev": "node scripts/initAgentGuards.mjs",
"prestart": "node scripts/initAgentGuards.mjs",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"founder:generate": "npx ts-node scripts/generate-founder-wallet.ts"
},
"keywords": [
"oaa",
"open-agent-architecture",
"ai",
"agents",
"api",
"library",
"typescript",
"nextjs",
"mic",
"eomm",
"civic-ai",
"voice-synthesis",
"holo"
],
"author": "KaizenCycle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kaizencycle/OAA-API-Library.git"
},
"bugs": {
"url": "https://github.com/kaizencycle/OAA-API-Library/issues"
},
"homepage": "https://github.com/kaizencycle/OAA-API-Library#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.95.1",
"@prisma/client": "^5.7.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"bcryptjs": "^2.4.3",
"next": "^14.0.0",
"nodemailer": "^6.9.7",
"openai": "^4.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^5.9.3",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"prettier": "^3.0.0",
"prisma": "^5.7.0",
"ts-node": "^10.9.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}