@smartergpt/lexrunner 1.3.0 → 1.4.1

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": "@smartergpt/lexrunner",
3
- "version": "1.3.0",
3
+ "version": "1.4.1",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24"
@@ -28,6 +28,7 @@
28
28
  "LICENSE.md"
29
29
  ],
30
30
  "bin": {
31
+ "lexrunner": "dist/cli.js",
31
32
  "lex-pr": "dist/cli.js",
32
33
  "lexrunner-mcp": "mcp-server.mjs"
33
34
  },
@@ -77,7 +78,7 @@
77
78
  }
78
79
  },
79
80
  "scripts": {
80
- "postinstall": "node -e \"console.log('\\n📦 lexrunner installed! Run \\\"npx lex-pr init\\\" to set up your workspace.\\n')\"",
81
+ "postinstall": "node -e \"console.log('\\n📦 lexrunner installed! Run \\\"npx lexrunner init\\\" to set up your workspace. The \\\"lex-pr\\\" compatibility alias remains supported.\\n')\"",
81
82
  "dev": "tsx watch src/cli.ts",
82
83
  "cli": "tsx src/cli.ts",
83
84
  "cli:built": "node dist/cli.js",
@@ -93,6 +94,7 @@
93
94
  "validate:manifests": "tsx scripts/validate-manifests.ts",
94
95
  "validate:build-artifacts": "tsx scripts/validate-build-artifacts.ts",
95
96
  "validate:package": "tsx scripts/validate-package-boundary.ts",
97
+ "check:install-scripts": "node scripts/check-install-script-policy.mjs",
96
98
  "test:package": "node scripts/smoke-packed-package.mjs",
97
99
  "docs:check": "node scripts/check-doc-links.mjs",
98
100
  "docs:surface": "node scripts/render-doc-surfaces.mjs",
@@ -129,7 +131,7 @@
129
131
  "@modelcontextprotocol/sdk": "^1.18.2",
130
132
  "@octokit/auth-token": "^6.0.0",
131
133
  "@octokit/rest": "^22.0.0",
132
- "@smartergpt/lex": "^3.0.1",
134
+ "@smartergpt/lex": "^4.0.0",
133
135
  "@types/babel__traverse": "^7.28.0",
134
136
  "ajv": "^8.20.0",
135
137
  "better-sqlite3-multiple-ciphers": "^12.6.2",
@@ -166,5 +168,10 @@
166
168
  "*.{json,md,yaml,yml}": [
167
169
  "prettier --check"
168
170
  ]
171
+ },
172
+ "allowScripts": {
173
+ "better-sqlite3-multiple-ciphers@12.11.1": true,
174
+ "esbuild@0.28.1": true,
175
+ "@smartergpt/lex": false
169
176
  }
170
177
  }