vexp-cli 2.0.25 → 2.0.27
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/license.js +11 -0
- package/package.json +6 -6
package/dist/license.js
CHANGED
|
@@ -286,6 +286,17 @@ function claimsToLimits(claims) {
|
|
|
286
286
|
return { maxNodes: 0, maxRepos: 0, allTools: true, plan: "team", email: claims.sub, renewsAt };
|
|
287
287
|
case "pro":
|
|
288
288
|
return { maxNodes: 50_000, maxRepos: 3, allTools: true, plan: "pro", email: claims.sub, renewsAt };
|
|
289
|
+
// AppSumo lifetime-deal tiers. Limits mirror vexp-core::limits_for_plan;
|
|
290
|
+
// 0 = unlimited (same convention as team). Display-only — the daemon is
|
|
291
|
+
// authoritative.
|
|
292
|
+
case "tier1":
|
|
293
|
+
return { maxNodes: 10_000, maxRepos: 1, allTools: true, plan: "tier1", email: claims.sub, renewsAt };
|
|
294
|
+
case "tier2":
|
|
295
|
+
return { maxNodes: 50_000, maxRepos: 3, allTools: true, plan: "tier2", email: claims.sub, renewsAt };
|
|
296
|
+
case "tier3":
|
|
297
|
+
return { maxNodes: 100_000, maxRepos: 0, allTools: true, plan: "tier3", email: claims.sub, renewsAt };
|
|
298
|
+
case "tier4":
|
|
299
|
+
return { maxNodes: 0, maxRepos: 0, allTools: true, plan: "tier4", email: claims.sub, renewsAt };
|
|
289
300
|
default:
|
|
290
301
|
return FREE_LIMITS;
|
|
291
302
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vexp-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.27",
|
|
4
4
|
"description": "Vexp — Context Engine for AI Coding Agents. Pre-indexes your codebase into a dependency graph and delivers ranked context to any MCP-compatible agent. 58% lower cost per task, 90% fewer tool calls (SWE-bench Verified). Works with Claude Code, Cursor, Copilot, Windsurf, Codex, Cline, Aider, and 12+ agents. Local-first. Your code never leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -100,10 +100,10 @@
|
|
|
100
100
|
"node": ">=20.0.0"
|
|
101
101
|
},
|
|
102
102
|
"optionalDependencies": {
|
|
103
|
-
"@vexp/core-linux-x64": "2.0.
|
|
104
|
-
"@vexp/core-linux-arm64": "2.0.
|
|
105
|
-
"@vexp/core-darwin-x64": "2.0.
|
|
106
|
-
"@vexp/core-darwin-arm64": "2.0.
|
|
107
|
-
"@vexp/core-win32-x64": "2.0.
|
|
103
|
+
"@vexp/core-linux-x64": "2.0.27",
|
|
104
|
+
"@vexp/core-linux-arm64": "2.0.27",
|
|
105
|
+
"@vexp/core-darwin-x64": "2.0.27",
|
|
106
|
+
"@vexp/core-darwin-arm64": "2.0.27",
|
|
107
|
+
"@vexp/core-win32-x64": "2.0.27"
|
|
108
108
|
}
|
|
109
109
|
}
|