devenv-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +210 -0
  3. package/dist/index.js +9508 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "devenv-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for instant infrastructure provisioning from your IDE",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "devenv-mcp": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "start": "bun run src/index.ts",
17
+ "build": "bun build src/index.ts --outdir dist --target node --external playwright --external googleapis --external @modelcontextprotocol/sdk --external dotenv --external zod && echo '#!/usr/bin/env node' | cat - dist/index.js > dist/temp.js && mv dist/temp.js dist/index.js",
18
+ "prepublishOnly": "bun run build",
19
+ "dev": "bun run --watch src/index.ts",
20
+ "test": "bun test",
21
+ "test:watch": "bun test --watch",
22
+ "test:coverage": "bun test --coverage"
23
+ },
24
+ "keywords": [
25
+ "mcp",
26
+ "model-context-protocol",
27
+ "claude",
28
+ "ai",
29
+ "infrastructure",
30
+ "devops",
31
+ "neon",
32
+ "vercel",
33
+ "supabase",
34
+ "cloudflare"
35
+ ],
36
+ "author": "Paul Lin",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/devenv/devenv-mcp"
41
+ },
42
+ "homepage": "https://website-eta-gules-9965c7p5yu.vercel.app",
43
+ "devDependencies": {
44
+ "@types/bun": "latest",
45
+ "@types/node": "^25.0.9"
46
+ },
47
+ "peerDependencies": {
48
+ "typescript": "^5"
49
+ },
50
+ "dependencies": {
51
+ "@modelcontextprotocol/sdk": "^1.25.3",
52
+ "dotenv": "^17.2.3",
53
+ "googleapis": "^170.1.0",
54
+ "playwright": "^1.57.0",
55
+ "zod": "^4.3.5"
56
+ }
57
+ }