-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "@delab-team/tlbcrc",
"version": "1.0.7",
"description": "Package & CLI to generate op's by tl-b",
"repository": "https://github.com/delab-team/tlbcrc",
"author": "DeLab Team",
"license": "MIT",
"keywords": ["cli", "blockchain", "ton", "tl-b"],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublish": "yarn build && echo '#!/usr/bin/env node' | cat - dist/src/cli.js > ./dist/temp && mv ./dist/temp dist/src/cli.js"
},
"bin": {
"tlbcrc": "./dist/src/cli.js"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.25.4",
"mocha": "^10.1.0",
"sinon": "^14.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"commander": "^9.4.1",
"crc-32": "^1.2.2"
}
}