-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.19 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.19 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "axie-tools",
"version": "1.7.7",
"type": "module",
"description": "TypeScript library and CLI tool for interacting with Axie Infinity marketplace and NFTs on Ronin network. Features marketplace operations for Axies and Materials (buy/sell/delist), batch transfers, and wallet information.",
"scripts": {
"build": "npm run build:lib && npm run build:cli",
"build:lib": "esbuild index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:ethers --external:@roninbuilders/contracts --external:prompts && tsc --emitDeclarationOnly",
"build:cli": "esbuild cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js --external:ethers --external:@roninbuilders/contracts --external:dotenv --external:prompts",
"postbuild": "chmod +x dist/cli.js",
"start": "node dist/cli.js",
"dev": "bun cli.ts",
"format": "npx @biomejs/biome format --write",
"format:check": "npx @biomejs/biome format --check .",
"prepublishOnly": "npm run build",
"test:create-order-axie": "AXIE_ID=<$AXIE_ID> PRICE=<$PRICE> bun test tests/create-order-axie.test.ts --timeout 30000",
"test:cancel-order-axie": "AXIE_ID=<$AXIE_ID> PRICE=<$PRICE> bun test tests/cancel-order-axie.test.ts --timeout 30000",
"test:settle-order-axie": "AXIE_ID=<$AXIE_ID> PRICE=<$PRICE> bun test tests/settle-order-axie.test.ts --timeout 30000",
"test:create-order-materials": "MATERIAL_ID=<$MATERIAL_ID> QUANTITY=<$QUANTITY> PRICE=<$PRICE> bun test tests/create-order-materials.test.ts --timeout 30000",
"test:cancel-order-materials": "MATERIAL_ID=<$MATERIAL_ID> QUANTITY=<$QUANTITY> PRICE=<$PRICE> bun test tests/cancel-order-materials.test.ts --timeout 30000",
"test:settle-order-materials": "MATERIAL_ID=<$MATERIAL_ID> QUANTITY=<$QUANTITY> PRICE=<$PRICE> bun test tests/settle-order-materials.test.ts --timeout 30000"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alexx855/axie-tools.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"keywords": [
"axie-infinity",
"axie",
"axieinfinity",
"ronin",
"blockchain",
"nft",
"web3",
"typescript",
"cli",
"sdk",
"api",
"tools",
"ethereum",
"ethers",
"marketplace",
"trading",
"automation",
"bot",
"gaming",
"defi",
"batch-transfer",
"buy-sell",
"delist",
"weth",
"ron-token",
"developers",
"crypto",
"nft-tools",
"gaming-tools"
],
"author": {
"name": "Alex Pedersen",
"email": "hello@alexpedersen.dev",
"url": "https://alexpedersen.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexx855/axie-tools/issues"
},
"homepage": "https://github.com/alexx855/axie-tools#readme",
"bin": {
"axie-tools": "dist/cli.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.2.19",
"@types/node": "^18.15.11",
"@types/prompts": "^2.4.9",
"esbuild": "^0.20.0"
},
"dependencies": {
"@roninbuilders/contracts": "^0.6.8",
"dotenv": "^17.2.1",
"ethers": "^6.13.4",
"prompts": "^2.4.2",
"typescript": "^5.1.6"
}
}