@wgb5445/aptos-intent-npm 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "Aptos Labs <opensource@aptoslabs.com>"
5
5
  ],
6
6
  "description": "Generating Move Script from intent",
7
- "version": "0.1.8",
7
+ "version": "0.1.9",
8
8
  "license": "Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",
@@ -30,7 +30,7 @@
30
30
  "exports": {
31
31
  ".": {
32
32
  "types": "./dist/aptos_dynamic_transaction_composer.d.ts",
33
- "import": "./dist/esm/entry.js",
33
+ "import": "./dist/esm/entry.mjs",
34
34
  "default": "./dist/cjs/entry.js"
35
35
  }
36
36
  },
package/rollup.config.mjs CHANGED
@@ -3,12 +3,12 @@ export default {
3
3
  input: 'entry.js',
4
4
  output: [
5
5
  {
6
- dir: 'dist/esm',
6
+ file: 'dist/esm/entry.mjs',
7
7
  format: "esm",
8
8
 
9
9
  },
10
10
  {
11
- dir: 'dist/cjs',
11
+ file: 'dist/esm/entry.js',
12
12
  format: "cjs"
13
13
  }
14
14
  ],