-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.64 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
{
"name": "@roninbuilders/contracts",
"version": "0.6.25",
"description": "Verified smart contract ABIs and addresses for the Ronin Network blockchain. TypeScript-ready with optimized bundle size.",
"type": "module",
"packageManager": "pnpm@10.33.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8192' tsup",
"generate-contracts": "bun src/generate-contracts.ts",
"test": "bun test",
"test:ethers": "bun test test/ethers.test.ts",
"test:viem": "bun test test/viem.test.ts",
"typecheck": "NODE_OPTIONS='--max-old-space-size=16384' tsc --noEmit --skipLibCheck",
"format": "biome format . --write",
"format:check": "biome ci .",
"generate-index": "bun run src/generate-index.ts"
},
"dependencies": {
"abitype": "^1.0.8",
"p-queue": "^7.4.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.2.8",
"ethers": "^6.13.5",
"tsup": "^8.4.0",
"viem": "^2.25.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roninbuilders/contracts.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ronin",
"axie",
"blockchain",
"smart-contracts",
"abi",
"viem",
"ethers",
"typescript",
"javascript",
"web3",
"axie-infinity",
"addresses"
],
"engines": {
"node": ">=18"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"license": "MIT"
}