-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 840 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
{
"name": "apply-agent",
"private": true,
"type": "module",
"version": "1.0.2",
"scripts": {
"start": "MODE=exploratory bun src/orchestrator.ts",
"cli": "bun src/cli.ts",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"version": "changeset version",
"pdf": "bun tests/pdf-test.ts",
"lt": "cd ./data/jobs && ../../scripts/live_tree.sh"
},
"packageManager": "bun@1.3.9",
"dependencies": {
"ollama": "^0.6.3",
"p-limit": "^7.3.0",
"pdfmake": "^0.3.4",
"pino": "^10.3.1",
"pino-loki": "^3.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/pdfmake": "^0.3.1",
"pino-pretty": "^13.1.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@changesets/cli": "^2.29.8"
}
}