-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "@transia/engram",
"version": "0.1.0",
"description": "Neuroscience-native temporal memory for AI agents. Implements TCM, hippocampal indexing, and middle-out retrieval.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"engram": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"test": "jest --no-coverage",
"test:watch": "jest --watch --no-coverage",
"test:coverage": "jest",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"typecheck": "tsc --noEmit",
"cli": "ts-node src/cli/index.ts"
},
"keywords": [
"memory",
"temporal",
"neuroscience",
"tcm",
"hippocampal",
"middle-out",
"ai-agent"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.0",
"typescript": "^5.5.0"
},
"dependencies": {
"commander": "^13.0.0",
"mongodb": "^6.3.0",
"uuid": "^11.0.0"
},
"engines": {
"node": ">=22"
}
}