-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "decision-memory-agent",
"version": "0.1.0",
"private": true,
"description": "AI agent that learns from past decisions to improve future recommendations",
"author": "Andrew Sauer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrewsauer/decision-memory-agent.git"
},
"bugs": {
"url": "https://github.com/andrewsauer/decision-memory-agent/issues"
},
"homepage": "https://github.com/andrewsauer/decision-memory-agent#readme",
"keywords": [
"ai-agent",
"decision-making",
"llm",
"vector-search",
"pgvector",
"typescript",
"semantic-search",
"policy-learning"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"db:migrate": "pnpm --filter @decision-memory/core db:migrate",
"db:seed": "pnpm --filter @decision-memory/core db:seed",
"db:studio": "pnpm --filter @decision-memory/core db:studio"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"turbo": "^2.3.0",
"typescript": "^5.4.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}