-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 781 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 781 Bytes
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
{
"name": "proj",
"version": "1.1.0",
"description": "Project Directory Management CLI - Manage and navigate project directories with ease",
"type": "module",
"bin": {
"proj": "./proj.ts"
},
"scripts": {
"help": "bun run proj.ts --help",
"list": "bun run proj.ts list",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:watch": "bun test --watch",
"mcp": "bun run mcp-server.ts"
},
"keywords": [
"cli",
"project-management",
"directory-navigation",
"productivity",
"developer-tools",
"mcp",
"model-context-protocol"
],
"author": "Daniel Miessler",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2"
}
}