@vfarcic/dot-ai 0.5.0 → 0.6.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/dist/mcp/server.js +0 -0
- package/package.json +6 -3
- package/bin.js +0 -19
package/dist/mcp/server.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfarcic/dot-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Universal Kubernetes application deployment agent with CLI and MCP interfaces",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"bin":
|
|
7
|
+
"bin": {
|
|
8
|
+
"dot-ai": "./dist/cli.js",
|
|
9
|
+
"dot-ai-mcp": "./dist/mcp/server.js"
|
|
10
|
+
},
|
|
8
11
|
"exports": {
|
|
9
12
|
".": "./dist/index.js",
|
|
10
13
|
"./mcp": "./dist/mcp/server.js"
|
|
@@ -18,7 +21,7 @@
|
|
|
18
21
|
"clean": "rm -rf dist",
|
|
19
22
|
"prebuild": "npm run clean && npm run lint",
|
|
20
23
|
"build": "tsc --sourceMap false",
|
|
21
|
-
"postbuild": "chmod +x dist/cli.js",
|
|
24
|
+
"postbuild": "chmod +x dist/cli.js dist/mcp/server.js",
|
|
22
25
|
"build:prod": "npm run clean && tsc --sourceMap false --removeComments true",
|
|
23
26
|
"build:dev": "tsc --sourceMap true",
|
|
24
27
|
"build:watch": "tsc --watch",
|
package/bin.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
console.log('Hello from dot-ai CLI!');
|
|
4
|
-
console.log('Arguments:', process.argv.slice(2));
|
|
5
|
-
|
|
6
|
-
// Simple help output
|
|
7
|
-
if (process.argv.includes('--help') || process.argv.includes('-h')) {
|
|
8
|
-
console.log(`
|
|
9
|
-
Usage: dot-ai [options]
|
|
10
|
-
|
|
11
|
-
Options:
|
|
12
|
-
--help, -h Show help
|
|
13
|
-
--version, -v Show version
|
|
14
|
-
`);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
if (process.argv.includes('--version') || process.argv.includes('-v')) {
|
|
18
|
-
console.log('dot-ai version 0.4.8');
|
|
19
|
-
}
|