-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathpackage.json
55 lines (55 loc) Β· 1.37 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
{
"name": "@tatumio/tatum",
"version": "4.2.46",
"description": "Tatum JS SDK",
"author": "Tatum",
"repository": "https://github.com/tatumio/tatum-js",
"files": [
"dist/"
],
"license": "MIT",
"keywords": [
"Tatum",
"SDK",
"Blockchain"
],
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/src/main.js",
"types": "./dist/src/main.d.ts",
"scripts": {
"cli": "ts-node src/cli.ts",
"lint": "eslint --fix src/ --ext .js,.jsx,.ts,.tsx && prettier --write src/",
"test": "jest --forceExit",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build",
"pack-all": "yarn build-all && yarn pack"
},
"dependencies": {
"bignumber.js": "^9.1.1",
"chalk": "^4.1.2",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"dotenv": "^16.0.3",
"eslint": "^8.14.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"undici": "^5.28.3"
}
}