@wgb5445/aptos-intent-npm 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/main.js +1247 -0
- package/dist/esm/main.mjs +1206 -0
- package/dist/{aptos_dynamic_transaction_composer.d.ts → main.d.mts} +19 -27
- package/dist/main.d.ts +240 -0
- package/main.mts +5 -0
- package/package.json +10 -9
- package/tsconfig.json +110 -0
- package/tsup.config.ts +22 -0
- package/dist/cjs/entry.js +0 -1276
- package/dist/esm/entry.js +0 -1276
- package/dist/esm/entry.mjs +0 -1260
- package/entry.js +0 -5
- package/rollup.config.mjs +0 -18
package/entry.js
DELETED
package/rollup.config.mjs
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
import { wasm } from '@rollup/plugin-wasm';
|
2
|
-
export default {
|
3
|
-
input: 'entry.js',
|
4
|
-
output: [
|
5
|
-
{
|
6
|
-
file: 'dist/esm/entry.mjs',
|
7
|
-
format: "esm",
|
8
|
-
|
9
|
-
},
|
10
|
-
{
|
11
|
-
file: 'dist/esm/entry.js',
|
12
|
-
format: "cjs"
|
13
|
-
}
|
14
|
-
],
|
15
|
-
plugins: [wasm({
|
16
|
-
targetEnv:"auto-inline"
|
17
|
-
})]
|
18
|
-
};
|