-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "@slicekit/erc8128",
"version": "0.3.3",
"description": "Minimal ERC-8128 implementation for signing and verifying HTTP requests with Ethereum accounts",
"scripts": {
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check --write",
"build": "bun run build.ts",
"test": "bun test"
},
"publishConfig": {
"access": "public"
},
"author": "slice-so",
"license": "MIT",
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"./dist"
],
"dependencies": {
"@noble/hashes": "^1.8.0"
},
"devDependencies": {
"@noble/secp256k1": "^1.7.2",
"viem": "^2.37.5",
"typescript": "5.9.2",
"bun-plugin-dts": "0.3.0",
"bun-types": "1.2.22",
"@biomejs/biome": "2.2.4",
"@types/node": "~24.3.1"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/slice-so/erc8128"
},
"homepage": "https://erc8128.org",
"keywords": [
"http",
"ethereum",
"wallet",
"web3",
"dapp",
"dappkit"
]
}