forked from tatumio/tatum-kms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 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
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
{
"name": "@tatumio/tatum-kms",
"version": "6.4.0",
"description": "Tatum KMS - Key Management System for Tatum-powered apps.",
"main": "dist/index.js",
"engines": {
"node": ">=14.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.168.0",
"@tatumio/cardano": "2.2.4",
"@tatumio/celo": "2.0.1-alpha.326",
"@tatumio/solana": "2.0.1-alpha.326",
"@tatumio/tatum": "1.37.22",
"@tatumio/tatum-kcs": "2.0.0-alpha.108",
"@tatumio/tron": "2.0.1-alpha.326",
"@tatumio/xlm": "2.0.1-alpha.326",
"@tatumio/xrp": "2.0.1-alpha.326",
"agentkeepalive": "^4.2.1",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"meow": "^7.0.1",
"readline-sync": "^1.4.10",
"reflect-metadata": "^0.1.13",
"semver": "^7.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/readline-sync": "^1.4.4",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
}
}