-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "airdrop-bot",
"version": "0.1.5",
"description": "This is a simple airdrop bot that can be used to interact onchain protocols",
"main": "dist/index.js",
"bin": {
"airdrop-bot": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LI-YONG-QI/airdrop-bot.git"
},
"homepage": "https://twitter.com/ShileXe",
"scripts": {
"bot:dev": "ts-node src/index.ts",
"pretest": "ts-node test/setup/reset-network.ts",
"test": "vitest",
"bot": "node dist/index.js",
"build": "tsup --config tsup.config.ts",
"lint": "eslint 'src/**/*.ts'",
"format:fix": "npx prettier . -w",
"format": "npx prettier . -c",
"prepublishOnly": "bumpp && npm run build",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run format"
},
"keywords": [
"cli",
"blockchain",
"bot",
"airdrop"
],
"files": [
"dist"
],
"author": "LI-YONG-QI",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"figlet": "^1.7.0",
"viem": "^2.9.22"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/figlet": "^1.5.8",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"bumpp": "^9.4.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
}
}