-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "adamant-airdrop",
"version": "2.1.1",
"description": "ADAMANT Airdrop executer",
"type": "module",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"airdrop": "node src/index.js",
"validate": "node src/index.js --validate",
"setup": "node src/index.js setup",
"version": "node src/index.js --version",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"airdrop"
],
"author": "ADAMANT Foundation <[email protected]>",
"license": "ISC",
"dependencies": {
"adamant-api": "^2.2.0",
"commander": "^11.1.0",
"jsonminify": "^0.4.2",
"kleur": "^4.1.5",
"kolorist": "^1.8.0",
"prettier": "^3.2.4",
"prompts": "^2.4.2",
"zod": "^3.22.4"
},
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-airdrop.git"
},
"homepage": "https://github.com/Adamant-im/adamant-airdrop#readme",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"husky": "^9.0.5"
}
}