create-struere 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -179,7 +179,7 @@ export const tools = defineTools([
179
179
  },
180
180
  handler: async (params) => {
181
181
  const expression = params.expression as string
182
- const sanitized = expression.replace(/[^0-9+-*/().\\s]/g, '')
182
+ const sanitized = expression.replace(/[^0-9+*/().\\s-]/g, '')
183
183
  try {
184
184
  const result = new Function(\`return \${sanitized}\`)()
185
185
  return { expression, result }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-struere",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Create new Struere projects with a single command",
5
5
  "keywords": ["ai", "agents", "scaffolding", "create", "generator", "llm"],
6
6
  "author": "struere",