Skip to content

Commit 4acd97f

Browse files
authored
chore: add more package.json exports (#7)
1 parent c861e29 commit 4acd97f

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

package.json

+26-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,32 @@
1111
"require": "./dist/index.cjs",
1212
"types": "./dist/index.d.ts"
1313
},
14-
"./utils": {
15-
"import": "./dist/utils/index.js",
16-
"require": "./dist/utils/index.cjs",
17-
"types": "./dist/utils/index.d.ts"
14+
"./types/build-output": {
15+
"types": "./dist/types/build-output/index.d.ts"
16+
},
17+
"./types/images": {
18+
"types": "./dist/types/images/index.d.ts"
19+
},
20+
"./types/request-context": {
21+
"types": "./dist/types/request-context/index.d.ts"
22+
},
23+
"./types/vercel-config": {
24+
"types": "./dist/types/vercel-config/index.d.ts"
25+
},
26+
"./utils/http": {
27+
"import": "./dist/utils/http/index.js",
28+
"require": "./dist/utils/http/index.cjs",
29+
"types": "./dist/utils/http/index.d.ts"
30+
},
31+
"./utils/images": {
32+
"import": "./dist/utils/images/index.js",
33+
"require": "./dist/utils/images/index.cjs",
34+
"types": "./dist/utils/images/index.d.ts"
35+
},
36+
"./utils/routing": {
37+
"import": "./dist/utils/routing/index.js",
38+
"require": "./dist/utils/routing/index.cjs",
39+
"types": "./dist/utils/routing/index.d.ts"
1840
}
1941
},
2042
"publishConfig": {

0 commit comments

Comments
 (0)