-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "micro-eth-signer",
"version": "0.19.0",
"description": "Minimal privacy-focused Ethereum library",
"files": [
"*.js",
"*.d.ts",
"*.js.map",
"*.d.ts.map",
"abi",
"clearsig",
"core",
"net",
"src",
"!_type_test.*"
],
"dependencies": {
"@noble/ciphers": "2.2.0",
"@noble/curves": "2.2.0",
"@noble/hashes": "2.2.0",
"micro-packed": "0.10.2"
},
"devDependencies": {
"@paulmillr/jsbt": "0.6.1",
"@paulmillr/trusted-setups": "~0.3.0",
"@types/node": "25.9.0",
"micro-ftch": "1.0.0",
"prettier": "3.8.3",
"snappyjs": "0.7.0",
"typescript": "6.0.3",
"yaml": "2.9.0"
},
"scripts": {
"benchmark": "node benchmark/microeth.ts",
"benchmark:thirdparty": "cd benchmark/thirdparty; npm ci; node *.ts",
"build": "tsc",
"build:clean": "rm -f *.{js,d.ts,js.map,d.ts.map}; rm -rf {abi,clearsig,core,net}",
"build:clearsig": "node test/misc/build-clearsig.ts test/vectors/clear-signing",
"bundle": "npx --no @paulmillr/jsbt bundle",
"check": "npx --no @paulmillr/jsbt check",
"bench": "cd test/benchmark; npm install; node tx.ts",
"format": "prettier --write src",
"test": "node test/index.ts",
"test:ssz-progressive": "node test/ssz-progressive.test.ts",
"test:bun": "bun test/index.ts",
"test:deno": "deno --allow-env --allow-read test/index.ts"
},
"exports": {
".": "./index.js",
"./core/rlp.js": "./core/rlp.js",
"./net.js": "./net.js",
"./net/clearsig.js": "./net/clearsig.js",
"./net/enrich.js": "./net/enrich.js",
"./net/history.js": "./net/history.js",
"./net/quoter.js": "./net/quoter.js",
"./net/resolver.js": "./net/resolver.js",
"./net/tokens.js": "./net/tokens.js",
"./net/trace.js": "./net/trace.js",
"./net/uniswap.js": "./net/uniswap.js",
"./utils.js": "./utils.js",
"./abi.js": "./abi/index.js",
"./clearsig.js": "./clearsig/index.js",
"./clearsig/repo.js": "./clearsig/repo.js",
"./clearsig/repo-full.js": "./clearsig/repo-full.js",
"./keystore.js": "./keystore.js",
"./kzg.js": "./kzg.js",
"./ssz.js": "./ssz.js"
},
"engines": {
"node": ">= 20.19.0"
},
"keywords": [
"ethereum",
"eth",
"create",
"sign",
"validate",
"transaction",
"address",
"tx",
"web3",
"ethers",
"micro",
"nano",
"signer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-eth-signer.git"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT"
}