-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 987 Bytes
/
package.json
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
{
"name": "@arcjet/mcp",
"version": "1.0.0",
"description": "Arcjet Model Context Protocol (MCP) server",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
"author": {
"name": "Arcjet",
"email": "support@arcjet.com",
"url": "https://arcjet.com"
},
"scripts": {
"build": "rollup --config rollup.config.js"
},
"keywords": [],
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"LICENSE",
"README.md",
"*.js",
"*.d.ts",
"!*.config.js"
],
"packageManager": "npm@11.0.0",
"dependencies": {
"@modelcontextprotocol/sdk": "1.9.0",
"typeid-js": "1.2.0",
"zod": "3.24.2"
},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-beta.5",
"@arcjet/rollup-config": "1.0.0-beta.5",
"@arcjet/tsconfig": "1.0.0-beta.5",
"@types/node": "22.14.00",
"eslint": "9.24.0",
"tslib": "2.8.1",
"typescript": "5.8.3"
}
}