viem-tx-sim 0.1.0 → 0.1.1
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.
- package/package.json +17 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "viem-tx-sim",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "RPC-only transaction simulation helpers for viem applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eth_call",
|
|
@@ -35,24 +35,6 @@
|
|
|
35
35
|
"default": "./dist/index.js"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "pnpm build:contracts && pnpm build:ts",
|
|
40
|
-
"build:contracts": "forge build && node scripts/generate-txsim-bytecode.mjs",
|
|
41
|
-
"build:ts": "tsc -p tsconfig.build.json",
|
|
42
|
-
"changeset": "changeset",
|
|
43
|
-
"fmt": "oxfmt package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
44
|
-
"fmt:check": "oxfmt --check package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
45
|
-
"lint": "oxlint && oxfmt --check package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
46
|
-
"lint:fix": "oxlint --fix && oxfmt package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
47
|
-
"prepare": "pnpm build:ts",
|
|
48
|
-
"prepublishOnly": "pnpm build:ts",
|
|
49
|
-
"release": "pnpm verify && pnpm changeset publish",
|
|
50
|
-
"test": "pnpm build:contracts && vitest run",
|
|
51
|
-
"test:debug": "VIEM_TX_SIM_DEBUG_RPC=1 pnpm test",
|
|
52
|
-
"test:mainnet": "pnpm build:contracts && vitest run test/mainnet.test.ts",
|
|
53
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
54
|
-
"verify": "pnpm lint && pnpm typecheck && pnpm build && pnpm test"
|
|
55
|
-
},
|
|
56
38
|
"devDependencies": {
|
|
57
39
|
"@arethetypeswrong/cli": "^0.18.4",
|
|
58
40
|
"@changesets/changelog-github": "^0.7.0",
|
|
@@ -70,13 +52,20 @@
|
|
|
70
52
|
"engines": {
|
|
71
53
|
"node": ">=20"
|
|
72
54
|
},
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "pnpm build:contracts && pnpm build:ts",
|
|
57
|
+
"build:contracts": "forge build && node scripts/generate-txsim-bytecode.mjs",
|
|
58
|
+
"build:ts": "tsc -p tsconfig.build.json",
|
|
59
|
+
"changeset": "changeset",
|
|
60
|
+
"fmt": "oxfmt package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
61
|
+
"fmt:check": "oxfmt --check package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
62
|
+
"lint": "oxlint && oxfmt --check package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
63
|
+
"lint:fix": "oxlint --fix && oxfmt package.json .oxlintrc.json .oxfmtrc.json tsconfig.json tsconfig.build.json vitest.config.ts src test scripts",
|
|
64
|
+
"release": "pnpm verify && pnpm changeset publish",
|
|
65
|
+
"test": "pnpm build:contracts && vitest run",
|
|
66
|
+
"test:debug": "VIEM_TX_SIM_DEBUG_RPC=1 pnpm test",
|
|
67
|
+
"test:mainnet": "pnpm build:contracts && vitest run test/mainnet.test.ts",
|
|
68
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
69
|
+
"verify": "pnpm lint && pnpm typecheck && pnpm build && pnpm test"
|
|
81
70
|
}
|
|
82
|
-
}
|
|
71
|
+
}
|