We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ead082c commit 150c1feCopy full SHA for 150c1fe
package.json
@@ -6,19 +6,24 @@
6
"license": "MIT",
7
"sideEffects": false,
8
"type": "module",
9
- "bin": {
10
- "giget": "./dist/cli.mjs"
11
- },
12
"exports": {
13
".": {
14
- "import": "./dist/index.mjs",
15
- "types": "./dist/index.d.ts",
16
- "require": "./dist/index.cjs"
+ "import": {
+ "types": "./dist/index.d.mts",
+ "default": "./dist/index.mjs"
+ },
+ "require": {
+ "types": "./dist/index.d.cts",
17
+ "require": "./dist/index.cjs"
18
+ }
19
}
20
},
21
"main": "./dist/index.cjs",
22
"module": "./dist/index.mjs",
23
"types": "./dist/index.d.ts",
24
+ "bin": {
25
+ "giget": "./dist/cli.mjs"
26
27
"files": [
28
"dist"
29
],
@@ -56,4 +61,4 @@
56
61
"vitest": "^1.1.0"
57
62
58
63
"packageManager": "pnpm@8.12.1"
59
-}
64
+}
0 commit comments