-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "sqlite-s3-agent-tutorial",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.check.json",
"test": "vitest run",
"test:watch": "vitest",
"local-fetch": "tsx src/localFetch.ts",
"cdk": "cdk",
"deploy": "bash scripts/deploy.sh",
"smoke": "bash scripts/smoke.sh",
"loop-start": "bash scripts/loop-start.sh",
"loop-stop": "bash scripts/loop-stop.sh",
"loop-status": "bash scripts/loop-status.sh"
},
"dependencies": {
"better-sqlite3": "^13.0.1",
"sqlite-vec": "^0.1.9",
"@aws-sdk/client-bedrock-runtime": "^3.1103.0",
"@aws-sdk/client-s3": "^3.1103.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.10.0",
"@smithy/util-stream": "^4.7.16",
"aws-cdk": "^2.1135.0",
"aws-cdk-lib": "^2.263.0",
"aws-sdk-client-mock": "^4.1.0",
"constructs": "^10.8.1",
"tsx": "^4.23.5",
"typescript": "^5.7.0",
"vitest": "^4.1.10"
}
}