-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "devcat-cli",
"version": "0.2.4",
"description": "See your whole AI-coding stack in one command. npx devcat-cli scans this machine for the MCP servers, plugins, skills, and subagents installed across Claude Code, Codex, Kimi Code, and Cursor and prints them grouped — locally, with no account and no network call.",
"license": "MIT",
"author": "Andrew Noble (https://github.com/AnobleSCM)",
"repository": {
"type": "git",
"url": "git+https://github.com/AnobleSCM/devcat-cli.git"
},
"homepage": "https://github.com/AnobleSCM/devcat-cli",
"bugs": "https://github.com/AnobleSCM/devcat-cli/issues",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"bin": {
"devcat": "dist/bin/devcat.js",
"devcat-cli": "dist/bin/devcat.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"require('node:fs').chmodSync('dist/bin/devcat.js', 0o755)\"",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist coverage"
},
"dependencies": {
"@napi-rs/keyring": "^1.2.0",
"commander": "^14.0.3",
"is-wsl": "^3.1.1",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"smol-toml": "^1.6.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.16.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^15.15.0",
"msw": "^2.13.6",
"typescript": "^5.6.0",
"vitest": "^4.1.5"
},
"keywords": [
"cli",
"devcat",
"claude-code",
"codex",
"cursor",
"mcp",
"mcp-servers",
"developer-tools",
"device-flow",
"rfc-8628"
]
}