-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "@mcpware/claude-code-organizer",
"version": "0.18.1",
"description": "Organize all your Claude Code memories, skills, MCP servers, commands, agents, rules, and hooks — see what loads globally vs per-project, then move items between scopes",
"type": "module",
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"bin": {
"claude-code-organizer": "./bin/cli.mjs"
},
"scripts": {
"start": "node bin/cli.mjs",
"mcp": "node src/mcp-server.mjs",
"test": "npx playwright test --config tests/e2e/playwright.config.mjs",
"test:headed": "npx playwright test --config tests/e2e/playwright.config.mjs --headed",
"test:unit": "node --test tests/unit/"
},
"keywords": [
"claude-code",
"mcp-server",
"claude-memory",
"claude-skills",
"anthropic",
"scope-management",
"drag-and-drop",
"developer-tools",
"dashboard",
"config-manager",
"ai-tools",
"open-source",
"claude-code-plugin",
"organizer",
"cli"
],
"publishConfig": {
"provenance": true
},
"mcpName": "io.github.mcpware/claude-code-organizer",
"author": "ithiria894",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcpware/claude-code-organizer"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
},
"optionalDependencies": {
"ai-tokenizer": "^1.0.6"
}
}