-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.15 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
{
"name": "skill-mcp",
"version": "0.1.0",
"description": "Cloud Skill File System & MCP Permission Gateway",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"bin": {
"skill-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"serve": "node dist/index.js serve",
"import": "node dist/index.js import",
"list": "node dist/index.js list",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"db:migrate": "node dist/db/migrate.js",
"docs:sync": "node scripts/sync-docs.js",
"release:patch": "npm version patch -m 'chore(release): v%s' && git push --follow-tags",
"release:minor": "npm version minor -m 'chore(release): v%s' && git push --follow-tags",
"release:major": "npm version major -m 'chore(release): v%s' && git push --follow-tags",
"release:alpha": "npm version prerelease --preid=alpha -m 'chore(release): v%s' && git push --follow-tags",
"release:beta": "npm version prerelease --preid=beta -m 'chore(release): v%s' && git push --follow-tags",
"release:rc": "npm version prerelease --preid=rc -m 'chore(release): v%s' && git push --follow-tags",
"release:dev": "npm version prerelease --preid=dev -m 'chore(release): v%s' && git push --follow-tags",
"prepublishOnly": "npm run build && npm run lint && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.8.1",
"commander": "^13.1.0",
"drizzle-orm": "^0.39.3",
"js-yaml": "^4.1.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"prom-client": "^15.1.3",
"simple-git": "^3.27.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=22.0.0"
}
}