-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "envmcp",
"version": "0.2.1",
"description": "A lightweight way to use environment variables in your Cursor MCP server definitions.",
"main": "dist/index.js",
"bin": {
"envmcp": "dist/cli.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && node -e \"require('fs').chmodSync('dist/cli.js', '755')\"",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"cursor",
"mcp",
"mcp-server",
"env",
"environment",
"dotenv"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/griffithsbs/envmcp.git"
},
"homepage": "https://github.com/griffithsbs/envmcp",
"author": "Ben Griffiths <benstephengriffiths@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/griffithsbs/envmcp/issues"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.16.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"README.md",
"sample.env.mcp"
]
}