-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.9 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.9 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
{
"name": "optimizely-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for Optimizely CMS integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "rollup -c",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"test:quick": "node scripts/test-quick.js",
"test:all": "node scripts/test-all.js",
"test:graph": "node scripts/test-graph-api.js",
"test:graph:debug": "node scripts/debug-helpers.js graph",
"test:cma": "node scripts/test-cma-api.js",
"test:cma:debug": "node scripts/debug-helpers.js cma",
"test:debug": "node scripts/debug-helpers.js all",
"test:schema": "node scripts/test-schema-discovery.js",
"check:env": "node scripts/diagnostics/check-credentials.mjs"
},
"keywords": [
"mcp",
"optimizely",
"cms",
"graphql",
"content-management"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"dotenv": "^16.6.1",
"graphql": "^16.10.0",
"graphql-request": "^7.0.0",
"node-fetch": "^2.7.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.16.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^8.57.0",
"rollup": "^4.44.2",
"tslib": "^2.8.1",
"tsx": "^4.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@9.15.4+sha1.ffa0b5c573381e8035b354028ccff97c8e452047"
}