Skip to content

Commit dae4e3b

Browse files
committed
fix: cjs types
1 parent 81f2a10 commit dae4e3b

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

package.json

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
{
22
"name": "morphcloud",
3-
"version": "0.0.11",
3+
"version": "0.0.10",
44
"description": "A Typescript SDK for creating, managing, and interacting with Morph Cloud VMs.",
5-
"main": "dist/index.cjs",
6-
"module": "dist/index.mjs",
7-
"types": "dist/index.d.ts",
5+
"main": "./dist/index.cjs",
6+
"module": "./dist/index.mjs",
7+
"types": "./dist/index.d.ts",
88
"files": [
99
"dist",
1010
"src"
1111
],
1212
"exports": {
1313
".": {
14-
"import": {
15-
"types": "./dist/index.d.mts",
16-
"default": "./dist/index.mjs"
17-
},
18-
"require": {
19-
"types": "./dist/index.d.cts",
20-
"default": "./dist/index.cjs"
21-
}
14+
"types": "./dist/index.d.ts",
15+
"import": "./dist/index.mjs",
16+
"require": "./dist/index.cjs"
2217
}
2318
},
2419
"scripts": {

0 commit comments

Comments
 (0)