-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
70 lines (70 loc) · 1.77 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
{
"name": "@tatumio/tatum-kms",
"version": "7.0.6",
"description": "Tatum KMS - Key Management System for Tatum-powered apps.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"run-daemon-testnet": "node dist/index.js daemon --testnet --api-key=YOUR_API_KEY --chain=ADA",
"start": "yarn build && node dist/index.js"
},
"files": [
"dist/"
],
"bin": {
"tatum-kms": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tatumio/tatum-kms.git"
},
"keywords": [
"Tatum",
"KMS",
"Key",
"Management",
"System",
"Blockchain",
"Security"
],
"author": "Tatum, hello@tatum.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/tatumio/tatum-kms/issues"
},
"homepage": "https://github.com/tatumio/tatum-kms#readme",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.445.0",
"@tatumio/cardano": "^2.2.72",
"@tatumio/celo": "^2.2.72",
"@tatumio/solana": "^2.2.72",
"@tatumio/tatum": "^1.37.50",
"@tatumio/tatum-kcs": "^2.0.0-alpha.113",
"@tatumio/tron": "^2.2.72",
"@tatumio/xlm": "^2.2.72",
"@tatumio/xrp": "^2.2.72",
"agentkeepalive": "^4.5.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"meow": "^7.0.1",
"readline-sync": "^1.4.10",
"reflect-metadata": "^0.1.13",
"semver": "^7.5.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/readline-sync": "^1.4.7",
"@types/semver": "^7.5.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}