@plumpslabs/kuma 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +159 -0
  3. package/dist/index.js +4678 -0
  4. package/package.json +68 -0
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@plumpslabs/kuma",
3
+ "version": "2.0.5",
4
+ "description": "Zero-setup safety toolkit for AI coding agents. MCP server with code review, git analysis, file editing, session memory, and static analysis — works with Claude Code, Cursor, Gemini CLI.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "kuma": "dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist/"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup src/index.ts --format esm --clean --out-dir dist",
16
+ "dev": "tsup src/index.ts --format esm --watch --out-dir dist",
17
+ "start": "node dist/index.js",
18
+ "typecheck": "tsc --noEmit",
19
+ "lint": "eslint src/",
20
+ "prepublishOnly": "npm run build",
21
+ "test": "node --experimental-vm-modules node_modules/.bin/jest"
22
+ },
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.7.0",
25
+ "fast-glob": "^3.3.2",
26
+ "zod": "^3.24.0"
27
+ },
28
+ "optionalDependencies": {
29
+ "typescript-language-server": "^5.3.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/jest": "^29.5.0",
33
+ "@types/node": "^22.0.0",
34
+ "jest": "^29.7.0",
35
+ "ts-jest": "^29.2.0",
36
+ "tsup": "^8.3.0",
37
+ "typescript": "^5.9.3"
38
+ },
39
+ "engines": {
40
+ "node": ">=18.0.0"
41
+ },
42
+ "keywords": [
43
+ "mcp",
44
+ "mcp-server",
45
+ "model-context-protocol",
46
+ "ai",
47
+ "llm",
48
+ "claude",
49
+ "claude-code",
50
+ "cursor",
51
+ "coding-agent",
52
+ "agentic",
53
+ "developer-tools",
54
+ "code-review",
55
+ "static-analysis",
56
+ "git-diff",
57
+ "cli"
58
+ ],
59
+ "repository": {
60
+ "type": "git",
61
+ "url": "git+https://github.com/plumpslabs/kuma.git"
62
+ },
63
+ "bugs": {
64
+ "url": "https://github.com/plumpslabs/kuma/issues"
65
+ },
66
+ "homepage": "https://github.com/plumpslabs/kuma#readme",
67
+ "license": "MIT"
68
+ }