-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.92 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
{
"name": "fluffy-context",
"version": "0.8.0",
"description": "Local context management CLI and MCP tools for AI coding agents",
"license": "MIT",
"author": "FluffyChi-Xing",
"repository": {
"type": "git",
"url": "git+https://github.com/FluffyChi-Xing/fluffy-context.git"
},
"homepage": "https://github.com/FluffyChi-Xing/fluffy-context#readme",
"bugs": {
"url": "https://github.com/FluffyChi-Xing/fluffy-context/issues"
},
"type": "module",
"keywords": [
"ai-agent",
"agent-context",
"claude-code",
"cli",
"context-management",
"context-runtime",
"developer-tools",
"mcp",
"model-context-protocol",
"session-resume"
],
"bin": {
"ctx": "dist/src/cli/main.js"
},
"types": "./dist/src/agent/index.d.ts",
"exports": {
".": {
"types": "./dist/src/agent/index.d.ts",
"default": "./dist/src/agent/index.js"
},
"./agent": {
"types": "./dist/src/agent/index.d.ts",
"default": "./dist/src/agent/index.js"
},
"./version": {
"types": "./dist/src/version.d.ts",
"default": "./dist/src/version.js"
}
},
"files": [
"dist/src",
"README.md",
"LICENSE",
"skills/fluffy-context/SKILL.md"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"test": "tsc -p tsconfig.test.json && node --test --test-concurrency=1 dist/test/*.test.js",
"pack:check": "tsc -p tsconfig.test.json && node --test dist/test/package-smoke.test.js",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run pack:check",
"ctx": "npm run build && node dist/src/cli/main.js"
},
"devDependencies": {
"@modelcontextprotocol/client": "^2.0.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/server": "^2.0.0",
"zod": "^4.4.3"
}
}