-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.25 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
{
"name": "micro-eth-signer",
"version": "0.19.0",
"description": "Minimal library for Ethereum transactions, addresses and smart contracts",
"files": [
"*.js",
"*.d.ts",
"*.js.map",
"*.d.ts.map",
"advanced",
"core",
"net",
"src",
"!_type_test.*"
],
"dependencies": {
"@noble/ciphers": "2.2.0",
"@noble/curves": "2.2.0",
"@noble/hashes": "2.2.0",
"micro-packed": "0.9.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.5.2",
"@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": {
"build": "tsc",
"build:clean": "rm -f *.{js,d.ts,js.map,d.ts.map}; rm -rf {advanced,core,net}",
"build:clearsig": "node test/misc/build-clearsig.ts test/vectors/clear-signing",
"build:release": "jsbt esbuild test/build",
"check": "jsbt check package.json",
"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",
"./utils.js": "./utils.js",
"./advanced/abi.js": "./advanced/abi.js",
"./advanced/clearsig-repo.js": "./advanced/clearsig-repo.js",
"./advanced/clearsig-repo-full.js": "./advanced/clearsig-repo-full.js",
"./advanced/keystore.js": "./src/advanced/keystore.ts",
"./advanced/kzg.js": "./advanced/kzg.js",
"./advanced/ssz.js": "./advanced/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"
}