-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.84 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
91
92
93
94
95
96
97
98
99
{
"name": "timps",
"private": true,
"version": "2.0.4",
"files": [
"packages/server/dist/",
"packages/server/package.json",
"docker-compose.yml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.9.4",
"workspaces": [
"packages/*",
"apps/*",
"timps-code",
"timps-mcp"
],
"description": "TIMPs — AI memory layer for coding agents. 22-layer persistent memory with 25 intelligence tools. Works with Claude Code, Cursor, Windsurf, and any LLM.",
"main": "dist/main.js",
"scripts": {
"build": "turbo run build",
"build:ci": "turbo run build --filter=!@timps/mobile --filter=!@timps/docusaurus --filter=!@timps/docs --filter=!@timps/integration-base --filter=!@timps/plugin-sdk --filter=!@timps-plugin/git --filter=!@timps-plugin/shell --filter=!@timps/memory-dashboard --filter=!timps-code --filter=!timps-mcp",
"test": "vitest run",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "turbo run typecheck --filter=!@timps/mobile",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yaml,yml}\"",
"clean": "turbo run clean --filter=!@timps/mobile",
"docs": "turbo run build --filter=@timps/docs",
"dashboard": "turbo run dev --filter=@timps/memory-dashboard",
"cli": "cd timps-code && npm run dev",
"tui": "cd timps-code && npm run dev"
},
"keywords": [
"ai",
"agent",
"memory",
"llm",
"gpt",
"gemini",
"ollama",
"persistent-memory",
"claude-code",
"coding-agent",
"mcp",
"model-context-protocol",
"cursor",
"windsurf",
"developer-tools",
"session-memory",
"context-window",
"ai-coding",
"code-generation",
"autonomous-agent",
"local-llm",
"vscode-extension",
"agentic"
],
"author": "TIMPS Contributors",
"homepage": "https://timps-website.vercel.app/timps-memory.html",
"repository": {
"type": "git",
"url": "https://github.com/Sandeeprdy1729/timps"
},
"bugs": {
"url": "https://github.com/Sandeeprdy1729/timps/issues"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/blessed": "^0.1.21",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^8.57.0",
"prettier": "^3.4.0",
"shell-quote": "^1.8.4",
"ts-node": "^10.9.2",
"turbo": "^2.9.9",
"typescript": "^5.6.0"
},
"overrides": {
"tmp": "0.2.6",
"vitest": "3.2.6",
"typescript": "^5.6.0",
"@types/node": "^22.0.0",
"react": "^18.3.1"
}
}