-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage_json.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage_json.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "secure-sol-cleaner",
"version": "2.0.0",
"description": "Безопасный скрипт для закрытия пустых SPL Token аккаунтов в Solana",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"keywords": [
"solana",
"spl-token",
"cleanup",
"typescript",
"blockchain"
],
"author": "Improved Version",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.87.6",
"@solana/spl-token": "^0.3.9",
"bs58": "^5.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/bs58": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}