@vaultgradient/pq-agent 0.1.0 → 0.1.3
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 +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaultgradient/pq-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Connect your data to AI agents (Claude, Cursor, Copilot) via a hosted, audited MCP endpoint. Runs inside your network and dials out — no inbound ports.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"type": "module",
|
|
14
14
|
"bin": {
|
|
15
|
-
"pq-agent": "
|
|
15
|
+
"pq-agent": "dist/index.js"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"exports": {
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
|
+
"prebuild": "tsc -b ../protocol",
|
|
37
38
|
"build": "tsup",
|
|
38
39
|
"build:tsc": "tsc -b",
|
|
39
40
|
"dev": "tsx src/index.ts run",
|
|
@@ -57,12 +58,12 @@
|
|
|
57
58
|
},
|
|
58
59
|
"repository": {
|
|
59
60
|
"type": "git",
|
|
60
|
-
"url": "https://github.com/Vault-Gradient/pipequery-cloud.git",
|
|
61
|
+
"url": "git+https://github.com/Vault-Gradient/pipequery-cloud.git",
|
|
61
62
|
"directory": "packages/agent"
|
|
62
63
|
},
|
|
63
64
|
"license": "UNLICENSED",
|
|
64
65
|
"author": "Vault Gradient",
|
|
65
66
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
67
|
+
"node": ">=24"
|
|
67
68
|
}
|
|
68
69
|
}
|