-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "@bilink-ai/claude-code-plugin",
"version": "0.3.1",
"description": "Bilink plugin for Claude Code",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@11.9.0",
"files": [
".claude-plugin/plugin.json",
".mcp.json",
"README.md",
"bin/",
"lib/",
"server.mjs",
"skills/"
],
"scripts": {
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm spellcheck && pnpm pack:dry-run",
"format": "biome format . --write",
"lint": "biome check . && node scripts/check-package.mjs",
"pack:dry-run": "pnpm pack --dry-run --json",
"spellcheck": "cspell lint . --config cspell.json --no-progress --no-summary --no-issues --silent && echo 'spellcheck: PASS' || (echo 'spellcheck: FAIL'; exit 1)",
"start": "node server.mjs",
"typecheck": "node --check server.mjs && node --check bin/*.mjs && node --check lib/*.mjs && node --check tests/*.test.mjs",
"test": "node --test tests/*.test.mjs"
},
"dependencies": {
"@bilink-ai/cli": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"cspell": "^9.7.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bilink-ai/bilink-claude-code-plugin.git"
},
"bugs": {
"url": "https://github.com/bilink-ai/bilink-claude-code-plugin/issues"
},
"homepage": "https://github.com/bilink-ai/bilink-claude-code-plugin#readme",
"keywords": [
"bilink",
"claude-code",
"plugin",
"mcp"
]
}