-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "@crowdstrike/aidr-mcp-server",
"version": "0.0.0-semantic-release",
"description": "A Model Context Protocol (MCP) server that provides integration with CrowdStrike AIDR APIs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CrowdStrike/aidr-mcp-server.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"engines": {
"node": ">=24.11.1"
},
"files": [
"dist",
"LICENSE.txt",
"README.md"
],
"bin": {
"aidr-mcp-server": "dist/index.mjs"
},
"scripts": {
"build": "tsdown && pnpm typecheck",
"start": "tsx src/index.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@crowdstrike/aidr": "1.0.2",
"@modelcontextprotocol/sdk": "1.24.0",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@containerbase/semantic-release-pnpm": "1.3.7",
"@standard-schema/spec": "1.0.0",
"@tsconfig/node24": "24.0.3",
"@types/express": "5.0.6",
"@types/node": "24.10.1",
"conventional-changelog-conventionalcommits": "9.1.0",
"semantic-release": "25.0.2",
"tsdown": "0.16.8",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}