-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.31 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
{
"name": "@sura_ai/chemotion",
"version": "0.1.0",
"description": "Model Context Protocol server for Chemotion ELN (electronic lab notebook). Search, read, and write samples, reactions, research plans, wellplates, and collections from any MCP-aware AI client.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"sura-chemotion-mcp": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"smoke": "tsx scripts/smoke.ts",
"prepublishOnly": "npm run typecheck && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsup": "^8.3.5",
"tsx": "^4.19.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"chemotion",
"eln",
"electronic-lab-notebook",
"chemistry",
"laboratory",
"research",
"science",
"anthropic",
"claude",
"ai"
],
"author": "bstn",
"license": "MIT"
}