-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 3.52 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
{
"name": "a2ui-local-gemma-spike",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k -n ajkit,api,web -c yellow,cyan,magenta \"npm:dev:ajkit-mcp\" \"npm:dev:api\" \"npm:dev:web\"",
"dev:ajkit-mcp": "npm --prefix \"${AJKIT_PATH:-/Users/mike/AgenticJudgmentKit}\" run mcp:local",
"dev:api": "A2UI_AJKIT_REQUIRE_LOOPBACK=1 A2UI_AJKIT_CACHE=1 A2UI_LOCAL_INTENT_CACHE=1 tsx watch server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"test": "vitest run",
"proof:fetch-ajkit-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface restaurant",
"proof:fetch-ajkit-travel-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface travel",
"proof:fetch-ajkit-candidate-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface candidate-review",
"proof:fetch-ajkit-issue-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface issue-triage",
"proof:fetch-ajkit-event-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface event-ops",
"proof:fetch-ajkit-lesson-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface lesson-plan",
"proof:fetch-ajkit-home-profile": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-profile.ts --surface home-project",
"proof:fetch-ajkit-constraints": "tsx shared/a2ui-generation-profiles/adapters/ajkit/fetch-constraints.ts --surface restaurant",
"proof:extract-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface restaurant",
"proof:extract-travel-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface travel",
"proof:extract-candidate-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface candidate-review",
"proof:extract-issue-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface issue-triage",
"proof:extract-event-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface event-ops",
"proof:extract-lesson-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface lesson-plan",
"proof:extract-home-manifest": "tsx shared/a2ui-generation-profiles/adapters/ajkit/extract-manifest.ts --surface home-project",
"proof:extract-storybook-manifest": "tsx shared/a2ui-generation-profiles/adapters/storybook/extract-manifest.ts",
"proof:visual": "vitest run tests/a2uiGenerationProfiles.visual.test.ts",
"proof:value": "tsx scripts/run-user-value-proof.ts",
"proof:hero": "tsx scripts/run-hero-proof.ts",
"proof:travel": "tsx scripts/run-travel-proof.ts",
"benchmark:providers": "tsx scripts/run-provider-benchmark.ts",
"preflight": "tsx server/preflight.ts"
},
"dependencies": {
"@a2ui/react": "0.9.1",
"@a2ui/web_core": "0.9.2",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"express": "^5.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"vite": "^7.1.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"playwright-chromium": "^1.59.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}