-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.38 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
{
"name": "axie-tools",
"version": "1.5.0",
"description": "A set of tools to make it easier for developers to interact with Axies on the Ronin network and the maketplace.",
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "bun cli.ts",
"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",
"Bot",
"Ronin",
"Marketplace",
"Access Token",
"Account",
"Buy",
"Order",
"Unlist",
"Developer",
"Tool",
"Crypto",
"Blockchain",
"Javascript",
"Typescript",
"NFT"
],
"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": {
"@types/node": "^18.15.11",
"dotenv": "^16.3.1"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@roninbuilders/contracts": "^0.5.0",
"ethers": "^5.7.0",
"typescript": "^5.1.6"
}
}