-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@skilljack/mcp",
"version": "0.9.0",
"description": "MCP server that discovers and serves Agent Skills. I know kung fu.",
"type": "module",
"main": "dist/index.js",
"bin": {
"skilljack-mcp": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"dist/ui",
"skills",
"README.md",
"LICENSE"
],
"author": "Ola Hungerford",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/olaservo/skilljack-mcp.git"
},
"homepage": "https://github.com/olaservo/skilljack-mcp#readme",
"keywords": [
"mcp",
"model-context-protocol",
"agent-skills",
"claude",
"ai",
"cli"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run build:ui && npm run build:ui:display && tsc",
"build:ui": "vite build",
"build:ui:display": "cross-env INPUT=skill-display.html vite build --emptyOutDir false",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"inspector": "npx @modelcontextprotocol/inspector@latest node dist/index.js",
"eval": "tsx evals/eval.ts",
"eval:greeting": "tsx evals/eval.ts --task=greeting",
"eval:code-style": "tsx evals/eval.ts --task=code-style",
"eval:template": "tsx evals/eval.ts --task=template-generator",
"eval:xlsx-openpyxl": "tsx evals/eval.ts --task=xlsx-openpyxl",
"eval:xlsx-formulas": "tsx evals/eval.ts --task=xlsx-formulas",
"eval:xlsx-financial": "tsx evals/eval.ts --task=xlsx-financial",
"eval:xlsx-verify": "tsx evals/eval.ts --task=xlsx-verify",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"chokidar": "^5.0.0",
"simple-git": "^3.27.0",
"yaml": "^2.7.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.42",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.1.0",
"cross-env": "^7.0.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.0",
"vitest": "^4.1.0"
}
}