vize 0.165.0 → 0.166.0

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/README.md +4 -7
  2. package/package.json +6 -7
package/README.md CHANGED
@@ -23,12 +23,9 @@ Need `vp` first? Install Vite+ once from the [Vite+ install guide](https://vitep
23
23
  vp install -D vize
24
24
  ```
25
25
 
26
- `vize check` also needs the Corsa runtime from `@typescript/native-preview`. Install it in projects
27
- that run `vize check` from package scripts:
28
-
29
- ```bash
30
- vp install -D @typescript/native-preview
31
- ```
26
+ The package declares the `@typescript/native-preview` Corsa runtime as an optional dependency, so
27
+ standard installs include the runtime needed by `vize check`. The `--corsa-path` CLI option remains
28
+ available for custom native TypeScript builds.
32
29
 
33
30
  ## CLI
34
31
 
@@ -112,7 +109,7 @@ The human and agent-friendly formats include local rule documentation paths such
112
109
  `docs/content/rules/vue.md`.
113
110
 
114
111
  `vize check` in the npm package uses the packaged NAPI checker and the `@typescript/native-preview`
115
- Corsa runtime, so it can run from `package.json` scripts after installing both packages:
112
+ Corsa runtime, so it can run from `package.json` scripts after installing `vize`:
116
113
 
117
114
  ```bash
118
115
  vp exec vize check src --strict
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vize",
3
- "version": "0.165.0",
3
+ "version": "0.166.0",
4
4
  "description": "Vize - High-performance Vue.js toolchain in Rust",
5
5
  "keywords": [
6
6
  "cli",
@@ -50,7 +50,7 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@vizejs/native": "0.165.0",
53
+ "@vizejs/native": "0.166.0",
54
54
  "oxc-transform": "0.130.0",
55
55
  "vue": "3.5.34"
56
56
  },
@@ -64,17 +64,16 @@
64
64
  "vite-plus": "0.1.21"
65
65
  },
66
66
  "peerDependencies": {
67
- "@pkl-community/pkl": "0.27.2",
68
- "@typescript/native-preview": "7.0.0-dev.20260602.1"
67
+ "@pkl-community/pkl": "0.27.2"
69
68
  },
70
69
  "peerDependenciesMeta": {
71
- "@typescript/native-preview": {
72
- "optional": true
73
- },
74
70
  "@pkl-community/pkl": {
75
71
  "optional": true
76
72
  }
77
73
  },
74
+ "optionalDependencies": {
75
+ "@typescript/native-preview": "7.0.0-dev.20260602.1"
76
+ },
78
77
  "engines": {
79
78
  "node": ">=22"
80
79
  },