-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "engram",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"zod": "$zod"
},
"scripts": {
"build": "dotenv -- turbo run build",
"typecheck": "dotenv -- turbo run typecheck",
"dev": "./scripts/kill-dev-ports.sh && dotenv -- turbo run dev",
"lint": "dotenv -- turbo run //#lint:run",
"lint:run": "biome check --write .",
"format": "dotenv -- turbo run //#format:run",
"format:run": "biome format --write .",
"test": "dotenv -- turbo run //#test:ts",
"test:ts": "bun test",
"test:ci": "bun test",
"test:watch": "bun test --watch",
"infra:up": "./scripts/infra-up.sh",
"infra:down": "./scripts/infra-down.sh",
"infra:docker": "docker-compose -f docker-compose.dev.yml up -d nats falkordb qdrant postgres",
"infra:docker:down": "docker-compose -f docker-compose.dev.yml down",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@engram/events": "*",
"@engram/storage": "*",
"@modelcontextprotocol/sdk": "^1.25.1",
"@qdrant/js-client-rest": "^1.16.2",
"@types/bun": "1.3.5",
"@typescript/native-preview": "^7.0.0-dev.20260104.1",
"c8": "^10.1.3",
"dotenv-cli": "^11.0.0",
"falkordb": "^6.4.1",
"husky": "^9.1.7",
"patch-package": "^8.0.1",
"pino-pretty": "^13.1.3",
"shadcn": "^3.6.2",
"tsx": "^4.21.0",
"turbo": "^2.7.2",
"zod": "4.2.1"
},
"packageManager": "bun@1.3.5",
"dependencies": {
"@ai-sdk/google": "^3.0.2",
"@nats-io/jetstream": "^3.3.0",
"@nats-io/kv": "^3.3.0",
"@nats-io/transport-node": "^3.3.0",
"ai": "^6.0.6"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}