@karmaniverous/stan-cli 0.10.3 → 0.11.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.
@@ -12,6 +12,8 @@ declare const renderAvailableScriptsHelp: (cwd: string) => string;
12
12
  type ScriptEntry = string | {
13
13
  script: string;
14
14
  warnPattern?: string;
15
+ /** Optional regex flags that override the default flags behavior for warnPattern. */
16
+ warnPatternFlags?: string;
15
17
  };
16
18
  type ScriptMap = Record<string, ScriptEntry>;
17
19
 
@@ -34,6 +36,9 @@ type RunnerConfig = {
34
36
  includes?: string[];
35
37
  excludes?: string[];
36
38
  imports?: Record<string, string[]>;
39
+ /** High-precedence re-includes (passed to core; subject to reserved denials). */
40
+ anchors?: string[];
41
+ overlayPlan?: string[];
37
42
  };
38
43
  /**
39
44
  * Behavior flags controlling archive/combine/keep semantics:
package/package.json CHANGED
@@ -13,13 +13,13 @@
13
13
  "url": "https://github.com/karmaniverous/stan-cli/issues"
14
14
  },
15
15
  "dependencies": {
16
- "@karmaniverous/stan-core": "^0.3.0",
17
- "@vitest/eslint-plugin": "^1.3.16",
16
+ "@karmaniverous/stan-core": "^0.4.4",
17
+ "@vitest/eslint-plugin": "^1.3.24",
18
18
  "chalk": "^5.6.2",
19
19
  "clipboardy": "^5.0.0",
20
- "commander": "^14.0.1",
20
+ "commander": "^14.0.2",
21
21
  "fs-extra": "^11.3.2",
22
- "inquirer": "^12.9.6",
22
+ "inquirer": "^12.10.0",
23
23
  "package-directory": "^8.1.0",
24
24
  "signal-exit": "^4.1.0",
25
25
  "table": "^6.9.0",
@@ -30,33 +30,33 @@
30
30
  "description": "STAN is a CLI that bridges your IDE with your favorite LLM and drives a rapid, powerful, low-friction, design-first iterative development process. Real-world AI-assisted development for professional engineers!",
31
31
  "devDependencies": {
32
32
  "@dotenvx/dotenvx": "^1.51.0",
33
- "@eslint/js": "^9.37.0",
33
+ "@eslint/js": "^9.38.0",
34
34
  "@rollup/plugin-alias": "^5.1.1",
35
- "@rollup/plugin-commonjs": "^28.0.6",
35
+ "@rollup/plugin-commonjs": "^28.0.9",
36
36
  "@rollup/plugin-json": "^6.1.0",
37
- "@rollup/plugin-node-resolve": "^16.0.2",
37
+ "@rollup/plugin-node-resolve": "^16.0.3",
38
38
  "@rollup/plugin-terser": "^0.4.4",
39
- "@rollup/plugin-typescript": "^12.1.4",
39
+ "@rollup/plugin-typescript": "^12.3.0",
40
40
  "@types/eslint-config-prettier": "^6.11.3",
41
41
  "@types/fs-extra": "^11.0.4",
42
- "@types/node": "^24.7.2",
43
- "@vitest/coverage-v8": "^3.2.4",
42
+ "@types/node": "^24.9.1",
43
+ "@vitest/coverage-v8": "^4.0.3",
44
44
  "auto-changelog": "^2.5.0",
45
45
  "cross-env": "^10.1.0",
46
- "eslint": "^9.37.0",
46
+ "eslint": "^9.38.0",
47
47
  "eslint-config-prettier": "^10.1.8",
48
48
  "eslint-plugin-jsonc": "^2.21.0",
49
49
  "eslint-plugin-prettier": "^5.5.4",
50
50
  "eslint-plugin-simple-import-sort": "^12.1.1",
51
51
  "eslint-plugin-tsdoc": "^0.4.0",
52
- "happy-dom": "^20.0.0",
52
+ "happy-dom": "^20.0.8",
53
53
  "jsonc-eslint-parser": "^2.4.1",
54
- "knip": "^5.64.3",
55
- "lefthook": "^1.13.6",
54
+ "knip": "^5.66.3",
55
+ "lefthook": "^2.0.1",
56
56
  "prettier": "^3.6.2",
57
57
  "release-it": "^19.0.5",
58
58
  "rimraf": "^6.0.1",
59
- "rollup": "^4.52.4",
59
+ "rollup": "^4.52.5",
60
60
  "rollup-plugin-dts": "^6.2.3",
61
61
  "tslib": "^2.8.1",
62
62
  "tsx": "^4.20.6",
@@ -65,8 +65,8 @@
65
65
  "typedoc-plugin-replace-text": "^4.2.0",
66
66
  "typedoc-plugin-zod": "^1.4.3",
67
67
  "typescript": "^5.9.3",
68
- "typescript-eslint": "^8.46.0",
69
- "vitest": "^3.2.4"
68
+ "typescript-eslint": "^8.46.2",
69
+ "vitest": "^4.0.3"
70
70
  },
71
71
  "engines": {
72
72
  "node": ">=20"
@@ -164,5 +164,5 @@
164
164
  },
165
165
  "type": "module",
166
166
  "types": "dist/index.d.ts",
167
- "version": "0.10.3"
167
+ "version": "0.11.1"
168
168
  }