@typemove/aptos 1.6.0-rc.2 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typemove/aptos",
3
- "version": "1.6.0-rc.2",
3
+ "version": "1.6.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -34,17 +34,17 @@
34
34
  "commander": "^12.0.0",
35
35
  "prettier": "^3.2.4",
36
36
  "radash": "^12.0.0",
37
- "@typemove/move": "1.6.0-rc.2"
37
+ "@typemove/move": "1.6.0"
38
38
  },
39
39
  "url": "https://github.com/sentioxyz/typemove",
40
40
  "scripts": {
41
- "_gen": "pnpm gen:test && node --loader ts-node/esm src/codegen/run.ts -t src/builtin -a src/abis",
41
+ "_gen": "pnpm gen:test && tsx src/codegen/run.ts -t src/builtin -a src/abis",
42
42
  "build": "pnpm gen && tsc && pnpm build:cjs",
43
43
  "build:all": "pnpm --filter=$(node -p \"require('./package.json').name\")... build",
44
44
  "build:cjs": "tsc --project tsconfig.cjs.json && cp ../../package.cjs.json ./dist/cjs/package.json",
45
45
  "gen": "pnpm _gen 0x1 && pnpm _gen 0x3 && pnpm _gen 0x4",
46
- "gen:test": "node --loader ts-node/esm src/codegen/run.ts -t src/tests/types src/tests/abis",
47
- "gen-with-address": "node --loader ts-node/esm src/codegen/run.ts -t ./src/tests/types 0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af",
46
+ "gen:test": "tsx src/codegen/run.ts -t src/tests/types src/tests/abis",
47
+ "gen-with-address": "tsx src/codegen/run.ts -t ./src/tests/types 0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af",
48
48
  "test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
49
49
  }
50
50
  }