-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 4.14 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 4.14 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
{
"name": "nodeagent",
"version": "0.1.0",
"private": false,
"description": "Cross-collaborative agent for live chat context gathering, search & synthesis, spreadsheet modeling, and TipTap notebook editing — distilled from NodeBench AI.",
"type": "module",
"license": "MIT",
"author": "Homen Shum",
"homepage": "https://github.com/homenshum/NodeAgent",
"repository": {
"type": "git",
"url": "https://github.com/homenshum/NodeAgent.git"
},
"bin": {
"nodeagent": "./bin/nodeagent.mjs"
},
"keywords": [
"agent",
"convex",
"tiptap",
"spreadsheet",
"rag",
"search",
"context-engineering",
"model-context-protocol"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 5173",
"proto": "vite --open /nodeagent-v1.html",
"demo": "tsx demo/runNodeAgentDemo.ts",
"demo:node": "node demo/runNodeAgentDemo.mjs",
"nodeagent": "tsx scripts/nodeagent-cli.ts",
"doctor": "npm run nodeagent -- doctor",
"check": "npm run prepush",
"proof": "npm run nodeagent:happy-path:smoke",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"nodeagent:frame:smoke": "tsx scripts/nodeagent-frame-smoke.ts --json-out docs/eval/nodeagent-frame-smoke.json",
"nodeagent:durable:smoke": "tsx scripts/nodeagent-durable-smoke.ts --json-out docs/eval/nodeagent-durable-smoke.json",
"nodeagent:sqlite:smoke": "tsx scripts/nodeagent-sqlite-smoke.ts --json-out docs/eval/nodeagent-sqlite-smoke.json",
"nodeagent:convex:smoke": "tsx scripts/nodeagent-convex-smoke.ts --json-out docs/eval/nodeagent-convex-smoke.json",
"nodeagent:local-dashboard:smoke": "tsx scripts/nodeagent-local-dashboard-scaffold-smoke.ts --json-out docs/eval/nodeagent-local-dashboard-scaffold-smoke.json",
"nodeagent:happy-path:smoke": "tsx scripts/nodeagent-cli.ts happy-path --json-out docs/eval/nodeagent-happy-path-speed.json",
"nodeagent:live-provider:smoke": "tsx scripts/nodeagent-live-provider-smoke.ts --json-out docs/eval/nodeagent-live-provider-smoke.json",
"omnigent:nodeagent:smoke": "tsx scripts/omnigent-nodeagent-smoke.ts --json-out docs/eval/omnigent-nodeagent-smoke.json",
"omniagent:nodeagent:smoke": "tsx scripts/omnigent-nodeagent-smoke.ts --json-out docs/eval/omnigent-nodeagent-smoke.json",
"omnigent:official:probe": "node scripts/omnigent-official-probe.mjs --json-out docs/eval/omnigent-official-cli-probe.json",
"walkthroughs:render": "node scripts/render-walkthrough-media.mjs",
"walkthroughs:check": "node scripts/render-walkthrough-media.mjs --check",
"clip:capture": "node scripts/render-walkthrough-media.mjs",
"nodeagent:chat-ui:smoke": "tsx scripts/nodeagent-chat-ui-scaffold-smoke.ts --json-out docs/eval/nodeagent-chat-ui-scaffold-smoke.json",
"examples:guidance:smoke": "tsx scripts/example-guidance-smoke.ts",
"secret-scan": "node scripts/secret-scan.mjs",
"convex:dev": "convex dev",
"prepush": "npm run secret-scan && npm run nodeagent:frame:smoke && npm run nodeagent:durable:smoke && npm run nodeagent:sqlite:smoke && npm run nodeagent:convex:smoke -- --skip-if-missing && npm run nodeagent:local-dashboard:smoke && npm run nodeagent:chat-ui:smoke && npm run nodeagent:happy-path:smoke && npm run nodeagent:live-provider:smoke -- --skip-if-missing && npm run omnigent:nodeagent:smoke && npm run examples:guidance:smoke && npm run typecheck && npm run test && npm run build && npm audit --omit=dev"
},
"dependencies": {
"@assistant-ui/react": "^0.14.14",
"@clack/prompts": "^1.5.1",
"better-sqlite3": "^12.11.1",
"commander": "^15.0.0",
"convex": "^1.41.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"omniagent": "^0.1.12",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"overrides": {
"convex": {
"esbuild": "0.28.1"
},
"ws": "8.21.0"
}
}