-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.61 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
{
"name": "@objectstack/example-todo",
"version": "4.0.58",
"description": "Example Todo App using ObjectStack Protocol",
"license": "Apache-2.0",
"private": true,
"main": "./objectstack.config.ts",
"types": "./objectstack.config.ts",
"exports": {
".": "./objectstack.config.ts",
"./objectstack.config": "./objectstack.config.ts"
},
"scripts": {
"dev": "objectstack dev",
"start": "objectstack start",
"build": "objectstack build",
"validate": "objectstack validate",
"typecheck": "tsc --noEmit",
"test": "objectstack test",
"test:ai": "tsx test/ai.test.ts",
"test:agent": "tsx test/ai-agent.test.ts",
"test:action": "tsx test/ai-action.test.ts",
"test:hitl": "tsx test/ai-hitl.test.ts",
"test:hitl:llm": "tsx test/ai-hitl-llm.test.ts",
"test:llm": "tsx test/ai-llm.test.ts",
"test:knowledge:llm": "tsx test/ai-knowledge-llm.test.ts",
"test:mcp": "tsx test/mcp-actions.test.ts"
},
"dependencies": {
"@objectstack/client": "workspace:*",
"@objectstack/driver-sqlite-wasm": "workspace:^",
"@objectstack/mcp": "workspace:*",
"@objectstack/metadata": "workspace:*",
"@objectstack/objectql": "workspace:^",
"@objectstack/knowledge-memory": "workspace:*",
"@objectstack/runtime": "workspace:^",
"@objectstack/service-ai": "workspace:*",
"@objectstack/service-knowledge": "workspace:*",
"@objectstack/spec": "workspace:*"
},
"devDependencies": {
"@ai-sdk/gateway": "^3.0.133",
"@objectstack/cli": "workspace:*",
"ai": "^6.0.208",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}