-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.59 KB
/
package.json
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
80
{
"name": "@roninbuilders/contracts",
"version": "0.5.2",
"description": "Ronin Network Contracts",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"watch": "tsup --watch; tsc -w",
"build": "tsup",
"update-contracts": "node --loader ts-node/esm ./src/update.ts",
"format": "pnpm dlx @biomejs/biome format ./src --write",
"upload": "pnpm run build && npm publish --yes",
"clean": "rm -rf .turbo && rm -rf ./dist",
"most-frequent-words": "node --loader ts-node/esm ./src/keywords.ts"
},
"type": "module",
"author": [
"Ronin Builders <3",
"Glitch-txs",
"alexx855"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"contracts",
"ronin",
"addresses",
"abi",
"viem",
"ethers",
"web3",
"axie",
"proxy",
"staking",
"apeiron",
"lp",
"gateway",
"planet",
"pool",
"manager",
"land",
"bridge",
"token",
"rns",
"erc1155",
"erc20",
"erc721"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roninbuilders/contracts.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@types/node": "^20.11.10",
"@wagmi/cli": "^2.1.8",
"abitype": "^0.10.3",
"p-queue": "^8.0.1",
"ts-node": "^10.9.2",
"tsup": "^6.7.0",
"typescript": "^5.4.2"
}
}