-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "stack",
"version": "0.1.0",
"description": "List every Claude Code, Claude Desktop, Codex, and Cursor plugin, skill, MCP, agent, command, and hook installed on this machine.",
"type": "module",
"bin": {
"stack": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build src/cli.ts --target=node --outfile=dist/cli.js --minify && bun run scripts/shebang.ts",
"dev": "bun run src/cli.ts",
"start": "bun run src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"smol-toml": "^1.3.4"
},
"devDependencies": {
"@types/bun": "^1.2.5",
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"claude",
"claude-code",
"codex",
"cursor",
"mcp",
"skills",
"plugins",
"inventory",
"cli"
],
"author": "vusal ismayilov <woosal@pm.me> (https://github.com/woosal1337)",
"license": "MIT",
"homepage": "https://github.com/woosal1337/stack",
"repository": {
"type": "git",
"url": "git+https://github.com/woosal1337/stack.git"
},
"bugs": {
"url": "https://github.com/woosal1337/stack/issues"
}
}