-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@jumpdefi/airdrop-tool",
"version": "1.2.0",
"description": "An airdrop tool for NEP-141 tokens that is designed to shoot a number of tokens to an NFT allowlist (or any list), with the ability to shoot multiple allocations to specific addresses.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"CONTRIBUTING.md",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Good-Fortune-Felines-Core-Team/airdrop-tool"
},
"license": "MIT",
"keywords": [
"blockchain",
"cryptocurrency",
"near"
],
"private": false,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"build": "rm -rf dist && tspc --build tsconfig.build.json",
"docs:build": "docusaurus build --out-dir .docs",
"docs:serve": "docusaurus serve --dir .docs --no-open",
"docs:start": "docusaurus start --no-open --port 8080",
"lint": "eslint .",
"node:start": "./scripts/start_node.sh",
"node:stop": "./scripts/stop_node.sh",
"prepare": "husky install",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,ts}\"",
"start": "node -r ts-node/register src/index.ts",
"test": "./scripts/test.sh"
},
"bin": {
"airdrop-tool": "dist/index.js"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@docusaurus/core": "^3.1.1",
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/preset-classic": "^3.1.1",
"@docusaurus/remark-plugin-npm2yarn": "^3.1.1",
"@docusaurus/tsconfig": "^3.1.1",
"@eslint/js": "^9.1.1",
"@mdx-js/react": "^3.0.0",
"@near-js/types": "^0.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^7.8.0",
"docusaurus-plugin-sass": "^0.2.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.70.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"bignumber.js": "^9.1.2",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"near-api-js": "^4.0.1"
}
}