-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2 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
{
"name": "evmauth",
"version": "0.2.0",
"description": "TypeScript SDK for interacting with EVMAuth smart contracts deployed to Ethereum, Radius, and other EVM-compatible networks.",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"engines": {
"node": ">=18.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"onFail": "error"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/evmauth/evmauth-ts.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"check": "biome check --write . && biome format --write . && tsc --noEmit",
"coverage": "vitest run --coverage",
"lint": "biome check --write .",
"lint:unsafe": "biome check --unsafe --write .",
"format": "biome format --write .",
"format:unsafe": "biome format --unsafe --write .",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ethers": "^6.14"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@vitest/coverage-v8": "3.1.3",
"typescript": "^5",
"vitest": "^3.1.3"
},
"homepage": "https://github.com/evmauth/evmauth-ts/#readme",
"bugs": {
"url": "https://github.com/evmauth/evmauth-ts/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"evm",
"auth",
"authentication",
"authorization",
"contract",
"payment",
"transaction",
"ethereum",
"radius",
"crypto",
"web3",
"x402",
"access",
"token",
"acl",
"security",
"ai"
]
}