-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "axie-tools",
"version": "1.6.0",
"description": "TypeScript library and CLI tool for interacting with Axie Infinity marketplace and NFTs on Ronin network. Features marketplace operations (buy/sell/delist), batch transfers, and wallet information.",
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "bun cli.ts",
"format": "npx @biomejs/biome format --write",
"prepublishOnly": "npm run build"
},
"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": ">=18.0.0"
},
"keywords": [
"axie",
"infinity",
"axie-infinity",
"bot",
"ronin",
"marketplace",
"developer",
"tool",
"javascript",
"typescript"
],
"author": {
"name": "Alex Pedersen",
"email": "[email protected]",
"url": "https://alexpedersen.dev"
},
"license": "ISC",
"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/node": "^18.15.11"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@roninbuilders/contracts": "^0.5.0",
"dotenv": "^16.3.1",
"ethers": "^6.13.4",
"typescript": "^5.1.6"
}
}