-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.58 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
{
"name": "engram",
"version": "0.0.1",
"private": true,
"description": "Privacy-first, cross-platform AI memory layer - Signal for AI Memory",
"keywords": [
"ai",
"memory",
"mcp",
"claude",
"e2ee",
"privacy",
"vector-search",
"engram"
],
"homepage": "https://github.com/EvolvingLMMs-Lab/engram#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EvolvingLMMs-Lab/engram.git"
},
"license": "Polyform-Noncommercial-1.0.0",
"author": "Engram Team",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean && rm -rf node_modules",
"dev": "pnpm -r --parallel dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^3.2.6"
},
"pnpm": {
"overrides": {
"protobufjs": "^7.5.8"
}
},
"packageManager": "pnpm@8.15.1",
"engines": {
"node": "20.x"
}
}