-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.69 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.69 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
100
101
102
103
104
{
"name": "c0ntextkeeper",
"version": "0.7.8",
"description": "Fully automatic context preservation for Claude Code - Works out of the box with zero configuration. Never lose valuable work again!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": "./dist/cli.js",
"./server": "./dist/server/index.js"
},
"bin": {
"c0ntextkeeper": "dist/cli.js",
"c0ntextkeeper-server": "dist/server/index.js"
},
"scripts": {
"dev": "tsx watch src/server/index.ts",
"build": "tsc",
"cli": "tsx src/cli.ts",
"init": "tsx src/cli.ts init",
"init:global": "tsx src/cli.ts init --global",
"status": "tsx src/cli.ts status",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:storage": "jest tests/utils/path-resolver.test.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run lint && npm test",
"postinstall": "node scripts/post-install.js 2>/dev/null || true"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"mcp-server",
"context",
"context-preservation",
"ai",
"ai-tools",
"development",
"developer-tools",
"automation",
"automatic",
"productivity",
"workflow",
"knowledge-base",
"search",
"analytics",
"hooks",
"typescript",
"cli"
],
"author": "c0ntextKeeper Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Capnjbrown/c0ntextKeeper"
},
"homepage": "https://github.com/Capnjbrown/c0ntextKeeper",
"bugs": {
"url": "https://github.com/Capnjbrown/c0ntextKeeper/issues",
"email": "admin@c0ntextkeeper.com"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"zod": "^4.1.5",
"dotenv": "^17.2.1",
"commander": "^14.0.0",
"p-queue": "^8.0.1",
"debounce-fn": "^6.0.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.17.0",
"jest": "^30.1.1",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"scripts/post-install.js",
"scripts/setup-hooks.js",
"scripts/install-hook.js",
"!scripts/README.md",
"README.md",
"LICENSE"
]
}