-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.52 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
{
"name": "evm-randomness",
"version": "0.4.0",
"description": "Minimal, typed SDK skeleton for HyperEVM VRF",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --watch --format esm,cjs --dts",
"lint": "eslint .",
"test": "vitest run",
"prepare": "pnpm build",
"clean": "rimraf dist"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"keywords": [
"vrf",
"randomness",
"drand",
"hyperEVM",
"sdk",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dhaiwat10/hyperevm-vrf-sdk.git"
},
"bugs": {
"url": "https://github.com/dhaiwat10/hyperevm-vrf-sdk/issues"
},
"homepage": "https://github.com/dhaiwat10/hyperevm-vrf-sdk#readme",
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"dotenv": "^17.2.1",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^2.1.4"
},
"dependencies": {
"ethers": "^6.15.0",
"https": "^1.0.0"
}
}