@quantyapp/quanty-mcp-server 1.0.10 → 1.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantyapp/quanty-mcp-server",
3
- "version": "1.0.10",
3
+ "version": "1.2.0",
4
4
  "description": "MCP Server para conectar Claude Desktop ao Quanty - Sistema de Orçamentos de Engenharia",
5
5
  "type": "module",
6
6
  "main": "dist/mcp/index.js",
@@ -9,10 +9,18 @@
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc",
12
+ "build:exe": "pkg . --targets node18-win-x64 --out-path dist/bin",
12
13
  "start": "node dist/mcp/index.js",
13
14
  "dev": "tsx src/mcp/index.ts",
14
15
  "prepublishOnly": "npm run build"
15
16
  },
17
+ "pkg": {
18
+ "assets": [
19
+ "dist/**/*",
20
+ "node_modules/**/*"
21
+ ],
22
+ "outputPath": "dist/bin"
23
+ },
16
24
  "keywords": [
17
25
  "mcp",
18
26
  "quanty",
@@ -43,6 +51,7 @@
43
51
  },
44
52
  "devDependencies": {
45
53
  "@types/node": "^20.10.0",
54
+ "pkg": "^5.8.1",
46
55
  "tsx": "^4.7.0",
47
56
  "typescript": "^5.3.0"
48
57
  }