This repository was archived by the owner on Dec 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
43
44
{
"name": "@tonstack/kblock-finder",
"version": "1.0.2",
"description": "cli tool helps to get the last key block in the TON Blockchain",
"main": "./dist/index.js",
"bin": {
"kblock-finder": "./dist/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"pre-pub": "echo '#!/usr/bin/env node' | cat - dist/main.js > ./dist/temp && mv ./dist/temp dist/main.js"
},
"author": "TonStack",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/tonstack/kblock-finder.git"
},
"homepage": "https://github.com/tonstack/kblock-finder#readme",
"keywords": [
"ton",
"keyblock",
"blockchain"
],
"bugs": {
"url": "https://github.com/tonstack/kblock-finder/issues"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"adnl": "^0.0.3",
"commander": "^9.3.0",
"ton-tl": "^0.2.2",
"ton3": "^0.0.11"
}
}