-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "countly-mcp-server",
"version": "1.1.0",
"description": "MCP server for Countly Analytics Platform",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc --watch",
"start": "node build/index.js --http",
"start:stdio": "node build/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "[ -d .git ] && husky || echo 'Skipping husky (not a git repository)'"
},
"keywords": [
"mcp",
"countly",
"analytics",
"server"
],
"author": "Countly MCP Server",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.13.5",
"countly-sdk-nodejs": "^24.10.3",
"dotenv": "^17.4.1"
},
"devDependencies": {
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.46.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nock": "^13.5.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"files": [
"build/"
],
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}