-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
{
"name": "@soracom-labs/soracom-mcp-server",
"version": "0.1.1",
"description": "MCP server for SORACOM API",
"main": "dist/index.js",
"type": "module",
"bin": "./dist/index.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soracom-labs/soracom-mcp-server.git"
},
"bugs": {
"url": "https://github.com/soracom-labs/soracom-mcp-server/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --max-warnings 60",
"typecheck": "tsc --noEmit",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run typecheck && npm run build",
"license:check": "license-checker --production --summary"
},
"keywords": [
"mcp",
"soracom",
"api"
],
"author": "SORACOM, INC.",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"axios": "^1.12.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"license-checker": "^25.0.1",
"msw": "^2.10.3",
"prettier": "^3.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.0.0"
}
}