-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "nullcost-plugin",
"version": "0.1.3",
"description": "Nullcost plugin and local MCP server for DB-backed free-tier developer tool discovery.",
"type": "module",
"license": "Apache-2.0",
"author": "Nullcost",
"homepage": "https://nullcost.xyz/install",
"repository": {
"type": "git",
"url": "git+https://github.com/johnvouros/nullcost-plugin.git"
},
"bugs": {
"url": "https://github.com/johnvouros/nullcost-plugin/issues"
},
"keywords": [
"nullcost",
"mcp",
"codex-plugin",
"claude-plugin",
"free-tier",
"developer-tools",
"pricing-catalog"
],
"bin": {
"nullcost-plugin": "bin/nullcost-plugin.mjs"
},
"files": [
".claude-plugin/",
".codex-plugin/",
".codexignore",
".mcp.json",
"assets/",
"bin/",
"docs/assets/",
"mcp/",
"scripts/",
"skills/",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"README.md",
"VERSION"
],
"scripts": {
"cli": "node ./bin/nullcost-plugin.mjs",
"doctor": "node ./bin/nullcost-plugin.mjs doctor --plugin-dir . --quick",
"doctor:catalog": "node ./bin/nullcost-plugin.mjs doctor --plugin-dir .",
"mcp:catalog": "node ./mcp/nullcost-provider-server.mjs",
"version:check": "node ./scripts/check-version.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
}
}