ultracite 7.5.6 → 7.5.8

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": "ultracite",
3
- "version": "7.5.6",
3
+ "version": "7.5.8",
4
4
  "description": "The AI-ready formatter that helps you write and generate code faster.",
5
5
  "keywords": [
6
6
  "biome",
@@ -31,8 +31,14 @@
31
31
  "exports": {
32
32
  "./biome/*": "./config/biome/*/biome.jsonc",
33
33
  "./eslint/*": "./config/eslint/*/eslint.config.mjs",
34
- "./oxlint/*": "./config/oxlint/*/index.mjs",
35
- "./oxfmt": "./config/oxfmt/index.mjs",
34
+ "./oxlint/*": {
35
+ "types": "./config/oxlint/*/index.d.mts",
36
+ "default": "./config/oxlint/*/index.mjs"
37
+ },
38
+ "./oxfmt": {
39
+ "types": "./config/oxfmt/index.d.mts",
40
+ "default": "./config/oxfmt/index.mjs"
41
+ },
36
42
  "./prettier": "./config/prettier/prettier.config.mjs",
37
43
  "./stylelint": "./config/stylelint/stylelint.config.mjs",
38
44
  "./*": "./config/biome/*/biome.jsonc"
@@ -42,9 +48,11 @@
42
48
  "registry": "https://registry.npmjs.org/"
43
49
  },
44
50
  "scripts": {
51
+ "prebuild": "bun run scripts/generate-dts.ts",
45
52
  "build": "tsup",
46
53
  "test": "bun test",
47
54
  "test:coverage": "bun test --coverage",
55
+ "bench": "bun run benchmarks/cli.bench.ts",
48
56
  "check-types": "tsc --noEmit"
49
57
  },
50
58
  "dependencies": {
@@ -57,6 +65,7 @@
57
65
  "nypm": "^0.6.5"
58
66
  },
59
67
  "devDependencies": {
68
+ "@angular-eslint/eslint-plugin": "latest",
60
69
  "@biomejs/biome": "2.4.11",
61
70
  "@eslint/js": "^10.0.1",
62
71
  "@next/eslint-plugin-next": "^16.2.3",
@@ -69,7 +78,6 @@
69
78
  "@vitest/eslint-plugin": "^1.6.15",
70
79
  "eslint-config-prettier": "^10.1.8",
71
80
  "eslint-import-resolver-typescript": "^4.4.4",
72
- "eslint-plugin-angular": "^5.0.0",
73
81
  "eslint-plugin-astro": "^1.7.0",
74
82
  "eslint-plugin-compat": "^7.0.1",
75
83
  "eslint-plugin-cypress": "^6.3.0",
@@ -94,6 +102,7 @@
94
102
  "eslint-plugin-vue": "^10.8.0",
95
103
  "globals": "^17.4.0",
96
104
  "oxlint": "^1.59.0",
105
+ "prettier-plugin-astro": "^0.14.1",
97
106
  "prettier-plugin-svelte": "^3.5.1",
98
107
  "prettier-plugin-tailwindcss": "^0.7.2",
99
108
  "stylelint-config-idiomatic-order": "^10.0.0",
@@ -102,9 +111,13 @@
102
111
  "tsup": "^8.5.1"
103
112
  },
104
113
  "peerDependencies": {
114
+ "oxfmt": ">=0.1.0",
105
115
  "oxlint": "^1.0.0"
106
116
  },
107
117
  "peerDependenciesMeta": {
118
+ "oxfmt": {
119
+ "optional": true
120
+ },
108
121
  "oxlint": {
109
122
  "optional": true
110
123
  }