-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 4.71 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 4.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@framersai/agentos-workbench",
"version": "0.1.0",
"private": true,
"description": "Developer cockpit for AgentOS sessions: inspect personas, debug tool calls, and replay streaming transcripts.",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:report": "pnpm build && pnpm bundle:report",
"build:check": "pnpm build && pnpm bundle:report && pnpm bundle:check && pnpm bundle:compare",
"bundle:report": "node scripts/generateBundleReport.mjs",
"bundle:baseline": "node scripts/updateBundleBaseline.mjs",
"bundle:baseline:update": "node scripts/generateBundleBaselineUpdate.mjs",
"bundle:check": "node scripts/checkBundleBudget.mjs",
"bundle:compare": "node scripts/checkBundleRegression.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "node --test --import tsx src/lib/taskOutcomeHealthFilters.test.ts src/lib/resultGroups.test.ts src/lib/toolExecutionResult.test.ts src/state/ragDocStore.test.ts scripts/bundleArtifacts.test.mjs scripts/bundleCli.test.mjs scripts/checkBundlePolicies.test.mjs scripts/generateBundleBaselineUpdate.test.mjs",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"src/**/*.{ts,tsx}\" --max-warnings=0",
"e2e": "pnpm exec playwright test",
"e2e:light": "PLAYWRIGHT_ARTIFACT_PROFILE=light pnpm exec playwright test",
"e2e:chromium": "pnpm exec playwright test --project=chromium",
"e2e:firefox": "pnpm exec playwright test --project=firefox",
"e2e:workbench": "pnpm exec playwright test tests/e2e/workbench-*.spec.ts",
"e2e:workbench:cross-browser": "pnpm e2e:workbench:chromium && pnpm e2e:workbench:firefox && pnpm e2e:workbench:webkit",
"e2e:workbench:cross-browser:light": "PLAYWRIGHT_ARTIFACT_PROFILE=light pnpm e2e:workbench:cross-browser",
"e2e:workbench:chromium": "pnpm exec playwright test tests/e2e/workbench-*.spec.ts --project=chromium",
"e2e:workbench:firefox": "pnpm exec playwright test tests/e2e/workbench-*.spec.ts --project=firefox",
"e2e:workbench:webkit": "PLAYWRIGHT_WORKERS=1 pnpm exec playwright test tests/e2e/workbench-*.spec.ts --project=webkit",
"e2e:memory:cross-browser": "PLAYWRIGHT_ARTIFACT_PROFILE=light PLAYWRIGHT_WORKERS=1 pnpm exec playwright test tests/e2e/workbench-memory.spec.ts --project=chromium && PLAYWRIGHT_ARTIFACT_PROFILE=light PLAYWRIGHT_WORKERS=1 pnpm exec playwright test tests/e2e/workbench-memory.spec.ts --project=firefox && PLAYWRIGHT_ARTIFACT_PROFILE=light PLAYWRIGHT_WORKERS=1 pnpm exec playwright test tests/e2e/workbench-memory.spec.ts --project=webkit",
"e2e:core": "pnpm exec playwright test tests/e2e/workbench-core.spec.ts",
"e2e:eval-planning": "pnpm exec playwright test tests/e2e/workbench-eval-planning.spec.ts",
"e2e:quality": "pnpm exec playwright test tests/e2e/workbench-quality.spec.ts",
"e2e:screenshots": "pnpm exec playwright test tests/e2e/workbench-screenshots.spec.ts",
"e2e:webkit": "PLAYWRIGHT_WORKERS=1 pnpm exec playwright test --project=webkit",
"e2e:smoke:pw": "pnpm exec playwright test tests/e2e/smoke.spec.ts",
"e2e:report": "pnpm exec playwright show-report",
"e2e:smoke": "tsx e2e-test.ts"
},
"dependencies": {
"@framers/agentos": ">=0.1.159",
"@framers/sql-storage-adapter": "^0.6.0",
"@framers/theme-tokens": "^0.1.0",
"@hookform/resolvers": "^3.6.0",
"@tanstack/react-query": "^5.51.0",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"clsx": "^2.1.1",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.1.0",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.26.0",
"socket.io-client": "^4.8.1",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.12",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-node-polyfills": "^0.22.0"
},
"engines": {
"node": ">=18.17.0"
},
"packageManager": "pnpm@10.15.1",
"repository": {
"type": "git",
"url": "https://github.com/framersai/agentos-workbench"
}
}