@vfarcic/dot-ai 0.3.5 → 0.3.6
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/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfarcic/dot-ai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
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
|
+
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"dot-ai": "dist/cli.js",
|
|
9
10
|
"dot-ai-mcp": "dist/mcp/server.js"
|
|
@@ -13,7 +14,7 @@
|
|
|
13
14
|
"./mcp": "./dist/mcp/server.js"
|
|
14
15
|
},
|
|
15
16
|
"scripts": {
|
|
16
|
-
"prepare": "
|
|
17
|
+
"prepare": "npm run build",
|
|
17
18
|
"pretest": "npm run build",
|
|
18
19
|
"test": "jest --silent",
|
|
19
20
|
"test:verbose": "jest --verbose",
|
|
@@ -21,7 +22,7 @@
|
|
|
21
22
|
"test:coverage": "jest --coverage --silent",
|
|
22
23
|
"clean": "rm -rf dist",
|
|
23
24
|
"prebuild": "npm run clean && npm run lint",
|
|
24
|
-
"build": "tsc --sourceMap false",
|
|
25
|
+
"build": "tsc --sourceMap false && chmod +x dist/cli.js dist/mcp/server.js",
|
|
25
26
|
"build:prod": "npm run clean && tsc --sourceMap false --removeComments true",
|
|
26
27
|
"build:dev": "tsc --sourceMap true",
|
|
27
28
|
"build:watch": "tsc --watch",
|