-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "@solapi/mcp-server",
"version": "1.10.7",
"description": "MCP server for SOLAPI document search and integration",
"author": "solapi",
"license": "MIT",
"type": "module",
"keywords": [
"mcp",
"claude",
"cursor",
"solapi",
"sms",
"alimtalk",
"document-search"
],
"main": "dist/index.js",
"bin": {
"solapi-mcp-server": "./dist/bin/mcp-runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solapi/solapi-mcp-server.git"
},
"homepage": "https://github.com/solapi/solapi-mcp-server#readme",
"bugs": {
"url": "https://github.com/solapi/solapi-mcp-server/issues"
},
"files": [
"dist/**/*",
"README.md"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"sync": "node --loader ts-node/esm --no-warnings tools/sync-examples.ts",
"dev": "ts-node --esm src/index.ts",
"dev:watch": "nodemon --exec ts-node --esm src/index.ts",
"test": "node test/test-server.js",
"test-fixed": "node test/test-fixed.js",
"postinstall": "test -f dist/bin/postinstall.js && node dist/bin/postinstall.js || echo 'Skipping postinstall in CI/build environment'",
"prepublishOnly": "npm run build && chmod +x dist/bin/* && echo '빌드 및 실행 권한 설정 완료'"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.5",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^20.10.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"nodemon": "^3.0.0",
"semantic-release": "^24.2.7",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"packageManager": "yarn@4.9.2"
}