@jskit-ai/jskit-cli 0.2.132 → 0.2.134

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": "@jskit-ai/jskit-cli",
3
- "version": "0.2.132",
3
+ "version": "0.2.134",
4
4
  "description": "Bundle and package orchestration CLI for JSKIT apps.",
5
5
  "type": "module",
6
6
  "files": [
@@ -20,15 +20,15 @@
20
20
  "test": "node --test"
21
21
  },
22
22
  "dependencies": {
23
- "@jskit-ai/jskit-catalog": "0.1.127",
24
- "@jskit-ai/kernel": "0.1.119",
25
- "@jskit-ai/shell-web": "0.1.118",
23
+ "@jskit-ai/jskit-catalog": "0.1.129",
24
+ "@jskit-ai/kernel": "0.1.120",
25
+ "@jskit-ai/shell-web": "0.1.119",
26
26
  "@vue/compiler-sfc": "^3.5.29",
27
27
  "ts-morph": "^28.0.0",
28
28
  "yaml": "^2.8.3"
29
29
  },
30
30
  "engines": {
31
- "node": ">=20 <23"
31
+ "node": "^22.12.0 || ^24.0.0 || ^26.0.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
@@ -61,14 +61,14 @@ function buildGithubWorkflowDocument(model = {}) {
61
61
  {
62
62
  id: "checkout",
63
63
  name: "Checkout",
64
- uses: "actions/checkout@v4"
64
+ uses: "actions/checkout@v7"
65
65
  },
66
66
  {
67
67
  id: "setup-node",
68
68
  name: "Setup Node",
69
- uses: "actions/setup-node@v4",
69
+ uses: "actions/setup-node@v7",
70
70
  with: {
71
- "node-version": 20,
71
+ "node-version": 26,
72
72
  cache: "npm"
73
73
  }
74
74
  },
@@ -108,6 +108,10 @@ function buildGithubWorkflowDocument(model = {}) {
108
108
  permissions: {
109
109
  contents: "read"
110
110
  },
111
+ env: {
112
+ npm_config_engine_strict: "true",
113
+ npm_config_strict_allow_scripts: "true"
114
+ },
111
115
  jobs: {
112
116
  verify: verifyJob
113
117
  }