@powerlines/plugin-tsup 0.12.243 → 0.12.245

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 +97 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-tsup",
3
- "version": "0.12.243",
3
+ "version": "0.12.245",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -41,42 +41,123 @@
41
41
  "main": "./dist/index.cjs",
42
42
  "module": "./dist/index.mjs",
43
43
  "exports": {
44
- ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
44
+ ".": {
45
+ "require": {
46
+ "types": "./dist/index.d.cts",
47
+ "default": "./dist/index.cjs"
48
+ },
49
+ "import": {
50
+ "types": "./dist/index.d.mts",
51
+ "default": "./dist/index.mjs"
52
+ },
53
+ "default": {
54
+ "types": "./dist/index.d.mts",
55
+ "default": "./dist/index.mjs"
56
+ }
57
+ },
45
58
  "./helpers": {
46
- "require": "./dist/helpers/index.cjs",
47
- "import": "./dist/helpers/index.mjs"
59
+ "require": {
60
+ "types": "./dist/helpers/index.d.cts",
61
+ "default": "./dist/helpers/index.cjs"
62
+ },
63
+ "import": {
64
+ "types": "./dist/helpers/index.d.mts",
65
+ "default": "./dist/helpers/index.mjs"
66
+ },
67
+ "default": {
68
+ "types": "./dist/helpers/index.d.mts",
69
+ "default": "./dist/helpers/index.mjs"
70
+ }
71
+ },
72
+ "./helpers/*": {
73
+ "require": {
74
+ "types": "./dist/helpers/*.d.cts",
75
+ "default": "./dist/helpers/*.cjs"
76
+ },
77
+ "import": {
78
+ "types": "./dist/helpers/*.d.mts",
79
+ "default": "./dist/helpers/*.mjs"
80
+ },
81
+ "default": {
82
+ "types": "./dist/helpers/*.d.mts",
83
+ "default": "./dist/helpers/*.mjs"
84
+ }
48
85
  },
49
86
  "./helpers/unplugin": {
50
- "require": "./dist/helpers/unplugin.cjs",
51
- "import": "./dist/helpers/unplugin.mjs"
87
+ "require": {
88
+ "types": "./dist/helpers/unplugin.d.cts",
89
+ "default": "./dist/helpers/unplugin.cjs"
90
+ },
91
+ "import": {
92
+ "types": "./dist/helpers/unplugin.d.mts",
93
+ "default": "./dist/helpers/unplugin.mjs"
94
+ },
95
+ "default": {
96
+ "types": "./dist/helpers/unplugin.d.mts",
97
+ "default": "./dist/helpers/unplugin.mjs"
98
+ }
52
99
  },
100
+ "./package.json": "./package.json",
53
101
  "./types": {
54
- "require": "./dist/types/index.cjs",
55
- "import": "./dist/types/index.mjs"
102
+ "require": {
103
+ "types": "./dist/types/index.d.cts",
104
+ "default": "./dist/types/index.cjs"
105
+ },
106
+ "import": {
107
+ "types": "./dist/types/index.d.mts",
108
+ "default": "./dist/types/index.mjs"
109
+ },
110
+ "default": {
111
+ "types": "./dist/types/index.d.mts",
112
+ "default": "./dist/types/index.mjs"
113
+ }
56
114
  },
57
- "./types/plugin": {
58
- "require": "./dist/types/plugin.cjs",
59
- "import": "./dist/types/plugin.mjs"
115
+ "./types/*": {
116
+ "require": {
117
+ "types": "./dist/types/*.d.cts",
118
+ "default": "./dist/types/*.cjs"
119
+ },
120
+ "import": {
121
+ "types": "./dist/types/*.d.mts",
122
+ "default": "./dist/types/*.mjs"
123
+ },
124
+ "default": {
125
+ "types": "./dist/types/*.d.mts",
126
+ "default": "./dist/types/*.mjs"
127
+ }
60
128
  },
61
- "./package.json": "./package.json"
129
+ "./types/plugin": {
130
+ "require": {
131
+ "types": "./dist/types/plugin.d.cts",
132
+ "default": "./dist/types/plugin.cjs"
133
+ },
134
+ "import": {
135
+ "types": "./dist/types/plugin.d.mts",
136
+ "default": "./dist/types/plugin.mjs"
137
+ },
138
+ "default": {
139
+ "types": "./dist/types/plugin.d.mts",
140
+ "default": "./dist/types/plugin.mjs"
141
+ }
142
+ }
62
143
  },
63
144
  "typings": "dist/index.d.mts",
64
145
  "files": ["dist/**/*"],
65
146
  "keywords": ["tsup", "powerlines", "storm-software", "powerlines-plugin"],
66
147
  "dependencies": {
67
148
  "@storm-software/tsup": "^0.2.79",
68
- "@stryke/path": "^0.26.2",
149
+ "@stryke/path": "^0.26.3",
69
150
  "@stryke/type-checks": "^0.5.22",
70
151
  "@stryke/types": "^0.10.36",
71
152
  "defu": "^6.1.4",
72
- "powerlines": "^0.38.0",
153
+ "powerlines": "^0.38.2",
73
154
  "unplugin": "3.0.0-beta.3"
74
155
  },
75
156
  "devDependencies": {
76
- "@powerlines/plugin-plugin": "^0.12.184",
157
+ "@powerlines/plugin-plugin": "^0.12.186",
77
158
  "@types/node": "^24.10.9"
78
159
  },
79
160
  "publishConfig": { "access": "public" },
80
161
  "types": "./dist/index.d.cts",
81
- "gitHead": "8a8bee34b0195608f4e45380ea3bcf33b9da18d7"
162
+ "gitHead": "3d4bed5aa23930e853ec198692be621f9652b7e7"
82
163
  }