infrawise 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.
- package/README.md +425 -0
- package/dist/index.js +3462 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "infrawise",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI-first infrastructure intelligence platform — analyzes DynamoDB, PostgreSQL, MySQL, MongoDB usage and exposes findings as an MCP server for Claude Code",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"infrastructure",
|
|
7
|
+
"aws",
|
|
8
|
+
"dynamodb",
|
|
9
|
+
"postgresql",
|
|
10
|
+
"mysql",
|
|
11
|
+
"mongodb",
|
|
12
|
+
"mcp",
|
|
13
|
+
"claude",
|
|
14
|
+
"claude-code",
|
|
15
|
+
"analysis",
|
|
16
|
+
"cli",
|
|
17
|
+
"devtools",
|
|
18
|
+
"terraform",
|
|
19
|
+
"cloudformation"
|
|
20
|
+
],
|
|
21
|
+
"homepage": "https://github.com/Sidd27/infrawise#readme",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/Sidd27/infrawise.git"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"bin": {
|
|
28
|
+
"infrawise": "dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=22.0.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup && tsc --noEmit",
|
|
36
|
+
"test": "vitest run --passWithNoTests",
|
|
37
|
+
"lint": "eslint src",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"dev": "node dist/index.js dev",
|
|
40
|
+
"prepack": "cp ../../README.md README.md 2>/dev/null || cp ../../../README.md README.md 2>/dev/null || true",
|
|
41
|
+
"postpack": "rm -f README.md"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@aws-sdk/client-dynamodb": "^3.0.0",
|
|
45
|
+
"@aws-sdk/credential-providers": "^3.0.0",
|
|
46
|
+
"@fastify/cors": "^9.0.0",
|
|
47
|
+
"@infrawise/adapters-dynamodb": "workspace:*",
|
|
48
|
+
"@infrawise/adapters-mongodb": "workspace:*",
|
|
49
|
+
"@infrawise/adapters-mysql": "workspace:*",
|
|
50
|
+
"@infrawise/adapters-postgres": "workspace:*",
|
|
51
|
+
"@infrawise/adapters-terraform": "workspace:*",
|
|
52
|
+
"@infrawise/analyzers": "workspace:*",
|
|
53
|
+
"@infrawise/context": "workspace:*",
|
|
54
|
+
"@infrawise/core": "workspace:*",
|
|
55
|
+
"@infrawise/graph": "workspace:*",
|
|
56
|
+
"@infrawise/server": "workspace:*",
|
|
57
|
+
"@infrawise/shared": "workspace:*",
|
|
58
|
+
"chalk": "^4.1.2",
|
|
59
|
+
"commander": "^12.0.0",
|
|
60
|
+
"fastify": "^4.26.0",
|
|
61
|
+
"inquirer": "^8.2.7",
|
|
62
|
+
"js-yaml": "^4.1.0",
|
|
63
|
+
"mongodb": "^6.5.0",
|
|
64
|
+
"mysql2": "^3.9.0",
|
|
65
|
+
"ora": "^5.4.1",
|
|
66
|
+
"pg": "^8.11.0",
|
|
67
|
+
"pino": "^8.19.0",
|
|
68
|
+
"pino-pretty": "^11.0.0",
|
|
69
|
+
"ts-morph": "^22.0.0",
|
|
70
|
+
"typescript": "^5.4.0",
|
|
71
|
+
"zod": "^3.22.0"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/inquirer": "^8.2.12",
|
|
75
|
+
"@types/js-yaml": "^4.0.9",
|
|
76
|
+
"@types/node": "^22.0.0",
|
|
77
|
+
"@types/pg": "^8.11.0",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
79
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
80
|
+
"eslint": "^8.57.0",
|
|
81
|
+
"tsup": "^8.5.1",
|
|
82
|
+
"typescript": "^5.4.0",
|
|
83
|
+
"vitest": "^1.5.0"
|
|
84
|
+
},
|
|
85
|
+
"files": [
|
|
86
|
+
"dist",
|
|
87
|
+
"README.md"
|
|
88
|
+
],
|
|
89
|
+
"publishConfig": {
|
|
90
|
+
"access": "public"
|
|
91
|
+
}
|
|
92
|
+
}
|