-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@agentpond/workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.4.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc -b && pnpm --filter agentpond build",
"format": "biome format --write . --files-ignore-unknown=true",
"format:check": "biome format . --files-ignore-unknown=true",
"lint": "biome lint . --files-ignore-unknown=true",
"biome:ci": "biome ci . --files-ignore-unknown=true",
"prepare": "husky",
"test": "NODE_ENV=test node --test --import tsx tests/*.test.ts",
"typecheck": "tsc --noEmit --pretty false",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"ingest": "tsx apps/ingest/src/index.ts",
"cli": "tsx apps/cli/src/index.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.936.0",
"@duckdb/node-api": "^1.5.4-r.1",
"@opentelemetry/otlp-transformer": "^0.208.0",
"fastify": "^5.6.2",
"protobufjs": "^7.6.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@agentpond/core": "workspace:*",
"@agentpond/duckdb": "workspace:*",
"@biomejs/biome": "^2.5.0",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.10.1",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}