-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.44 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.44 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
{
"name": "ctt-shell",
"version": "0.1.0",
"description": "Universal AI agent framework: Agent-Shell execution + CTT memory + a2e guard rails",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"ctt-shell": "dist/cli/cli.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').cpSync('src/web/static','dist/src/web/static',{recursive:true})\"",
"dev": "tsc --watch",
"test": "node --test dist/tests/unit/domain-adapters.test.js dist/tests/unit/mcp-server.test.js dist/tests/unit/normalize-plan.test.js dist/tests/unit/normalize-response.test.js dist/tests/unit/shell.test.js dist/tests/unit/store.test.js dist/tests/unit/tfidf.test.js dist/tests/unit/context-loader.test.js dist/tests/unit/circuit-breaker.test.js dist/tests/unit/sanitize.test.js dist/tests/unit/agent.test.js dist/tests/unit/enrich.test.js dist/tests/unit/embedding.test.js dist/tests/unit/scheduler.test.js dist/tests/unit/web-server.test.js",
"clean": "rm -rf dist",
"start": "node dist/cli/cli.js"
},
"keywords": [
"ctt",
"context-time-training",
"ai-agent",
"mcp",
"llm",
"guard-rails",
"small-models"
],
"author": "MauricioPerera",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.4.0"
}
}