-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 915 Bytes
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
{
"name": "engineering-decision-memory",
"version": "1.0.0",
"description": "System for capturing and querying engineering decisions from GitHub activity",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "node src/index.js",
"web": "node src/web-server.js",
"test": "echo \"Tests coming soon\""
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@octokit/rest": "^20.0.2",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^9.2.2",
"cookie-parser": "^1.4.7",
"dotenv": "^16.3.1",
"express": "^4.22.1",
"groq-sdk": "^0.37.0",
"jsonwebtoken": "^9.0.3",
"openai": "^6.22.0",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"keywords": [
"engineering",
"decisions",
"github",
"knowledge-graph"
],
"author": "Engineering Decision Memory System",
"license": "MIT"
}