@autonoma-ai/planner 0.1.14 → 0.1.15

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,8 +1,7 @@
1
1
  {
2
2
  "name": "@autonoma-ai/planner",
3
- "version": "0.1.14",
4
- "description": "Autonoma test planner generate E2E test cases for any frontend codebase.",
5
- "type": "module",
3
+ "version": "0.1.15",
4
+ "description": "Autonoma test planner - generate E2E test cases for any frontend codebase.",
6
5
  "bin": {
7
6
  "autonoma-planner": "dist/index.js"
8
7
  },
@@ -11,34 +10,36 @@
11
10
  "README.md",
12
11
  "LICENSE"
13
12
  ],
14
- "engines": {
15
- "node": ">=24"
13
+ "type": "module",
14
+ "publishConfig": {
15
+ "access": "public",
16
+ "registry": "https://registry.npmjs.org"
16
17
  },
17
18
  "dependencies": {
18
19
  "@clack/core": "^1.3.1",
19
20
  "@clack/prompts": "^1.3.0",
20
21
  "@openrouter/ai-sdk-provider": "^2.9.0",
21
- "ai": "^6.0.172",
22
+ "@t3-oss/env-core": "^0.13.10",
23
+ "ai": "^6.0.94",
22
24
  "cross-spawn": "^7.0.6",
23
25
  "glob": "^13.0.6",
24
26
  "gray-matter": "^4.0.3",
25
27
  "highlight.js": "^11.11.1",
26
28
  "minimatch": "^10.0.0",
27
29
  "which": "^5.0.0",
28
- "zod": "^4.4.1"
30
+ "zod": "4.3.6"
29
31
  },
30
32
  "devDependencies": {
31
33
  "@types/cross-spawn": "^6.0.6",
32
- "@types/node": "^24.0.0",
34
+ "@types/node": "^25.2.3",
33
35
  "@types/which": "^3.0.4",
34
36
  "tsup": "^8.3.5",
35
- "tsx": "^4.19.2",
36
- "typescript": "^5.7.2",
37
- "vitest": "^2.1.8"
37
+ "tsx": "^4.21.0",
38
+ "typescript": "^6.0.3",
39
+ "vitest": "^4.1.4"
38
40
  },
39
- "publishConfig": {
40
- "access": "public",
41
- "registry": "https://registry.npmjs.org"
41
+ "engines": {
42
+ "node": ">=24"
42
43
  },
43
44
  "scripts": {
44
45
  "build": "tsup",
@@ -46,7 +47,9 @@
46
47
  "start": "node dist/index.js",
47
48
  "test": "vitest run",
48
49
  "test:watch": "vitest",
49
- "eval:classifier": "bun run evals/failure-classifier.eval.ts",
50
- "typecheck": "tsc --noEmit"
50
+ "eval:classifier": "tsx evals/failure-classifier.eval.ts",
51
+ "typecheck": "tsc --noEmit",
52
+ "lint": "oxlint src tests evals",
53
+ "fmt": "oxfmt --write src tests evals"
51
54
  }
52
55
  }