prettier 4.0.0-alpha.11 → 4.0.0-alpha.13

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": "prettier",
3
- "version": "4.0.0-alpha.11",
3
+ "version": "4.0.0-alpha.13",
4
4
  "description": "Prettier is an opinionated code formatter",
5
5
  "bin": "./bin/prettier.cjs",
6
6
  "repository": "prettier/prettier",
@@ -136,7 +136,7 @@
136
136
  "./esm/parser-yaml.mjs": "./plugins/yaml.mjs"
137
137
  },
138
138
  "engines": {
139
- "node": ">=14"
139
+ "node": ">=18"
140
140
  },
141
141
  "files": [
142
142
  "LICENSE",
@@ -150,7 +150,9 @@
150
150
  "index.d.ts",
151
151
  "index.d.ts",
152
152
  "index.mjs",
153
- "internal/cli.mjs",
153
+ "internal/experimental-cli-worker.mjs",
154
+ "internal/experimental-cli.mjs",
155
+ "internal/legacy-cli.mjs",
154
156
  "package.json",
155
157
  "plugins/acorn.d.ts",
156
158
  "plugins/acorn.js",
@@ -196,8 +198,6 @@
196
198
  "standalone.mjs"
197
199
  ],
198
200
  "preferUnplugged": true,
199
- "type": "commonjs",
200
- "dependencies": {
201
- "@prettier/cli": "^0.7.0"
202
- }
201
+ "sideEffects": false,
202
+ "type": "commonjs"
203
203
  }