-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.87 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.87 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
{
"name": "micro-eth-signer",
"version": "0.18.1",
"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/curves": "^2.0.0",
"@noble/hashes": "^2.0.0",
"micro-packed": "^0.8.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.4.5",
"@paulmillr/trusted-setups": "~0.3.0",
"@types/node": "24.2.1",
"micro-ftch": "0.4.3",
"prettier": "3.6.2",
"snappyjs": "0.7.0",
"typescript": "5.9.2",
"yaml": "2.4.1"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -f *.{js,d.ts,js.map,d.ts.map}; rm -rf {advanced,core,net}",
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
"bench": "cd test/benchmark; npm install; node tx.ts",
"format": "prettier --write src",
"test": "node --experimental-strip-types --no-warnings test/index.ts",
"test:bun": "bun test/index.ts",
"test:deno": "deno --allow-env --allow-read test/index.ts"
},
"exports": {
".": "./index.js",
"./net.js": "./net.js",
"./utils.js": "./utils.js",
"./advanced/abi.js": "./advanced/abi.js",
"./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"
}