@powerlines/plugin-oxlint 0.7.232 → 0.7.234

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 (1) hide show
  1. package/package.json +22 -58
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-oxlint",
3
- "version": "0.7.232",
3
+ "version": "0.7.234",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for running Oxlint on the codebase.",
6
6
  "repository": {
@@ -39,63 +39,24 @@
39
39
  "license": "Apache-2.0",
40
40
  "private": false,
41
41
  "exports": {
42
- "./package.json": "./package.json",
43
- ".": {
44
- "import": {
45
- "types": "./dist/index.d.mts",
46
- "default": "./dist/index.mjs"
47
- },
48
- "require": {
49
- "types": "./dist/index.d.cts",
50
- "default": "./dist/index.cjs"
51
- },
52
- "default": {
53
- "types": "./dist/index.d.mts",
54
- "default": "./dist/index.mjs"
55
- }
42
+ ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
43
+ "./helpers": {
44
+ "require": "./dist/helpers/index.cjs",
45
+ "import": "./dist/helpers/index.mjs"
56
46
  },
57
- "./index": {
58
- "import": {
59
- "types": "./dist/index.d.mts",
60
- "default": "./dist/index.mjs"
61
- },
62
- "require": {
63
- "types": "./dist/index.d.cts",
64
- "default": "./dist/index.cjs"
65
- },
66
- "default": {
67
- "types": "./dist/index.d.mts",
68
- "default": "./dist/index.mjs"
69
- }
47
+ "./helpers/generate-config": {
48
+ "require": "./dist/helpers/generate-config.cjs",
49
+ "import": "./dist/helpers/generate-config.mjs"
70
50
  },
71
51
  "./types": {
72
- "import": {
73
- "types": "./dist/types/index.d.mts",
74
- "default": "./dist/types/index.mjs"
75
- },
76
- "require": {
77
- "types": "./dist/types/index.d.cts",
78
- "default": "./dist/types/index.cjs"
79
- },
80
- "default": {
81
- "types": "./dist/types/index.d.mts",
82
- "default": "./dist/types/index.mjs"
83
- }
52
+ "require": "./dist/types/index.cjs",
53
+ "import": "./dist/types/index.mjs"
84
54
  },
85
- "./types/*": {
86
- "import": {
87
- "types": "./dist/types/*.d.mts",
88
- "default": "./dist/types/*.mjs"
89
- },
90
- "require": {
91
- "types": "./dist/types/*.d.cts",
92
- "default": "./dist/types/*.cjs"
93
- },
94
- "default": {
95
- "types": "./dist/types/*.d.mts",
96
- "default": "./dist/types/*.mjs"
97
- }
98
- }
55
+ "./types/plugin": {
56
+ "require": "./dist/types/plugin.cjs",
57
+ "import": "./dist/types/plugin.mjs"
58
+ },
59
+ "./package.json": "./package.json"
99
60
  },
100
61
  "files": ["dist/**/*"],
101
62
  "keywords": ["oxlint", "powerlines", "storm-software", "powerlines-plugin"],
@@ -106,14 +67,17 @@
106
67
  "@stryke/fs": "^0.33.37",
107
68
  "@stryke/path": "^0.26.1",
108
69
  "defu": "^6.1.4",
109
- "oxlint": "^1.41.0",
70
+ "oxlint": "^1.42.0",
110
71
  "oxlint-tsgolint": "^0.2.1",
111
- "powerlines": "^0.37.99"
72
+ "powerlines": "^0.37.101"
112
73
  },
113
74
  "devDependencies": {
114
- "@powerlines/plugin-plugin": "^0.12.179",
75
+ "@powerlines/plugin-plugin": "^0.12.181",
115
76
  "@types/node": "^24.10.9"
116
77
  },
117
78
  "publishConfig": { "access": "public" },
118
- "gitHead": "87ed8c180e381f12ffedfe88962b847cf938a5a2"
79
+ "main": "./dist/index.cjs",
80
+ "module": "./dist/index.mjs",
81
+ "types": "./dist/index.d.cts",
82
+ "gitHead": "4e654e45f368e79d4f8bae94975607de483c81ef"
119
83
  }