@warptoad/skinny-fat-imt-js 0.0.2

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 ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@warptoad/skinny-fat-imt-js",
3
+ "version": "0.0.2",
4
+ "description": "js library counter part of skinny-fat-imt contracts, used to sync the onchain tree client side",
5
+ "license": "MIT",
6
+ "author": "warptoad",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/warptoad/skinny-fat-imt-js.git"
10
+ },
11
+ "homepage": "https://github.com/warptoad/skinny-fat-imt-js#readme",
12
+ "bugs": "https://github.com/warptoad/skinny-fat-imt-js/issues",
13
+ "keywords": [
14
+ "merkle-tree",
15
+ "incremental-merkle-tree",
16
+ "imt",
17
+ "lean-imt",
18
+ "poseidon2",
19
+ "ethereum",
20
+ "viem",
21
+ "zk"
22
+ ],
23
+ "type": "module",
24
+ "sideEffects": false,
25
+ "main": "./dist/index.js",
26
+ "types": "./dist/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
31
+ },
32
+ "./event-scanning": {
33
+ "types": "./dist/eventScanning.d.ts",
34
+ "default": "./dist/eventScanning.js"
35
+ },
36
+ "./package.json": "./package.json"
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "src",
41
+ "README.md",
42
+ "LICENSE"
43
+ ],
44
+ "engines": {
45
+ "node": ">=22"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "scripts": {
51
+ "compile": "hardhat compile && pnpm gen:abis",
52
+ "gen:abis": "node scripts/genAbis.mjs",
53
+ "typecheck": "tsc --noEmit",
54
+ "clean": "rm -rf dist",
55
+ "build": "pnpm clean && tsc -p tsconfig.build.json",
56
+ "test": "hardhat test",
57
+ "prepublishOnly": "pnpm build"
58
+ },
59
+ "dependencies": {
60
+ "@zk-kit/lean-imt": "^2.2.5",
61
+ "@zkpassport/poseidon2": "^0.6.2"
62
+ },
63
+ "peerDependencies": {
64
+ "viem": "^2.47.6"
65
+ },
66
+ "devDependencies": {
67
+ "@nomicfoundation/hardhat-ignition": "3.1.8",
68
+ "@nomicfoundation/hardhat-ignition-viem": "^3.1.6",
69
+ "@nomicfoundation/hardhat-toolbox-viem": "5.0.7",
70
+ "@types/node": "22.8.5",
71
+ "@warptoad/fat-imt.sol": "0.0.11",
72
+ "@warptoad/skinny-imt.sol": "0.0.11",
73
+ "forge-std": "github:foundry-rs/forge-std#v1.9.4",
74
+ "hardhat": "3.11.1",
75
+ "typescript": "~6.0.3",
76
+ "viem": "2.47.6"
77
+ }
78
+ }