-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
91 lines (91 loc) · 2.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tatumio/tatum-kms",
"version": "8.0.0",
"description": "Tatum KMS - Key Management System for Tatum-powered apps.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.x"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": false,
"clean": true,
"format": [
"esm"
]
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"test": "jest",
"run-daemon-testnet": "yarn start daemon --testnet --apiKey=YOUR_API_KEY --chain=ADA",
"start": "node --experimental-modules 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, [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tatumio/tatum-kms/issues"
},
"homepage": "https://github.com/tatumio/tatum-kms#readme",
"resolutions": {
"minimatch@*": "^9.0.5"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.669.0",
"@tatumio/cardano": "^2.2.86",
"@tatumio/celo": "^2.2.86",
"@tatumio/solana": "^2.2.86",
"@tatumio/tatum": "^1.37.50",
"@tatumio/tatum-kcs": "^2.0.0-alpha.113",
"@tatumio/tron": "^2.2.86",
"@tatumio/xlm": "^2.2.86",
"@tatumio/xrp": "^2.2.86",
"agentkeepalive": "^4.5.0",
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"lodash": "^4.17.21",
"meow": "^13.2.0",
"readline-sync": "^1.4.10",
"semver": "^7.6.3",
"uuid": "^11.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.5",
"@types/readline-sync": "^1.4.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"jest-ctrf-json-reporter": "^0.0.9",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}