forked from helsome/folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.5 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": "finagent",
"version": "0.4.0-beta.2",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run vite:dev",
"vite:dev": "cd apps/electron && bunx vite",
"build": "bun run build:packages && bun run build:electron",
"build:packages": "bun run --filter './packages/*' build",
"build:electron": "cd apps/electron && bun run build",
"typecheck": "bun run --filter './**' typecheck",
"lint": "bun run --filter './**' lint",
"test:unit": "bun test --isolate",
"test:integration": "bun test --isolate && bun run typecheck",
"eval:smoke": "bun scripts/eval/run.ts --smoke",
"eval:full": "bun scripts/eval/run.ts",
"test:ui": "bun test packages/ui",
"test:e2e": "cd apps/electron && bun run test:e2e",
"test:e2e:visible": "cd apps/electron && FINAGENT_E2E_VISIBLE=1 bun run test:e2e",
"test:package-smoke": "cd apps/electron && bun run test:package-smoke",
"test:release": "bun run release:check",
"release:check": "bun run scripts/release-check.mjs",
"release:package": "bun run scripts/release-package.mjs",
"i18n:check": "bun scripts/i18n-check.ts",
"trace:showcase": "cd apps/electron && node e2e/trace-showcase.mjs"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "file:.pi/extensions/langsmith/vendor/pi-coding-agent",
"bun-types": "^1.0.0",
"typescript": "^5.6.0"
},
"dependencies": {
"@langchain/langsmith-pi-extension": "^0.2.0",
"vite": "^8.0.10"
}
}