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 8fc67d9 commit 78edbd3Copy full SHA for 78edbd3
package.json
@@ -43,6 +43,7 @@
43
"reinstall": "bun clean:deps && bun install",
44
"release": "bun ./scripts/release.ts"
45
},
46
+ "dependencies": {},
47
"peerDependencies": {
48
"@commitlint/types": "^19.5.0",
49
"chalk": "^5.4.1"
@@ -61,9 +62,17 @@
61
62
"typescript": "5.8.2"
63
64
"type": "module",
65
+ "module": "dist/index.js",
66
+ "types": "dist/index.d.ts",
67
"exports": {
- ".": "./dist/index.js",
- "./*": "./dist/formatters/*.js",
68
+ ".": {
69
+ "types": "./dist/index.d.ts",
70
+ "import": "./dist/index.js"
71
+ },
72
+ "./*": {
73
+ "types": "./dist/formatters/*.d.ts",
74
+ "import": "./dist/formatters/*.js"
75
76
"./package.json": "./package.json"
77
78
"devEngines": {
0 commit comments