-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"name": "mini-notes-anna-app",
"private": true,
"version": "0.1.0",
"description": "Mini Notes Anna App interview project with Vue 3 and a local Executa JSON-RPC tool.",
"scripts": {
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"dev": "anna-app dev --no-llm",
"validate": "anna-app validate --strict",
"preview": "vite --host 127.0.0.1",
"rpc:describe": "anna-app executa dev --dir executas/notes-summarizer-python --describe --json --no-sampling --no-agent --no-image --no-upload",
"rpc:invoke": "node scripts/run-mock-sampling.mjs",
"test:protocol": "node scripts/protocol-smoke.mjs",
"test:archive": "node scripts/verify-executa-archive.mjs",
"test": "pnpm typecheck && pnpm test:protocol",
"package:executa": "node scripts/package-executa.mjs"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.2.4",
"lucide-vue-next": "^0.468.0",
"vite": "^6.0.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@anna-ai/cli": "^0.1.22",
"typescript": "^5.7.2",
"vue-tsc": "^2.2.0"
}
}