@danainnovations/cortex-mcp 1.0.84 → 1.0.85
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/cli.js +55 -32
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danainnovations/cortex-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.85",
|
|
4
4
|
"description": "Connect your AI tools to Asana, GitHub, Microsoft 365, Monday.com, Salesforce, Slack, Vercel & Supabase MCPs via Cortex",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,10 @@
|
|
|
16
16
|
"dev": "tsup --watch",
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"test:watch": "vitest",
|
|
19
|
-
"typecheck": "tsc --noEmit"
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"build:installer": "tsup --config tsup.installer.ts && pkg dist-installer/cli.cjs --config pkg.json",
|
|
21
|
+
"build:installer:mac": "tsup --config tsup.installer.ts && pkg dist-installer/cli.cjs --config pkg.json -t node18-macos-arm64,node18-macos-x64 -o installers/cortex-mcp-setup-mac",
|
|
22
|
+
"build:installer:win": "tsup --config tsup.installer.ts && pkg dist-installer/cli.cjs --config pkg.json -t node18-win-x64 -o installers/cortex-mcp-setup-win.exe"
|
|
20
23
|
},
|
|
21
24
|
"engines": {
|
|
22
25
|
"node": ">=18.0.0"
|
|
@@ -45,6 +48,7 @@
|
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
50
|
"@types/node": "^20.0.0",
|
|
51
|
+
"@yao-pkg/pkg": "^6.14.1",
|
|
48
52
|
"tsup": "^8.0.0",
|
|
49
53
|
"typescript": "^5.4.0",
|
|
50
54
|
"vitest": "^1.0.0"
|