|
1 | 1 | { |
2 | 2 | "name": "@tatumio/tatum-kms", |
3 | | - "version": "7.0.8", |
| 3 | + "version": "8.0.0", |
4 | 4 | "description": "Tatum KMS - Key Management System for Tatum-powered apps.", |
5 | 5 | "main": "dist/index.js", |
6 | 6 | "types": "./dist/index.d.ts", |
| 7 | + "type": "module", |
7 | 8 | "engines": { |
8 | 9 | "node": ">=18.x" |
9 | 10 | }, |
| 11 | + "tsup": { |
| 12 | + "entry": [ |
| 13 | + "src/index.ts" |
| 14 | + ], |
| 15 | + "sourcemap": false, |
| 16 | + "clean": true, |
| 17 | + "format": [ |
| 18 | + "esm" |
| 19 | + ] |
| 20 | + }, |
10 | 21 | "scripts": { |
11 | | - "build": "tsc", |
12 | | - "lint": "eslint . --ext .ts", |
13 | | - "run-daemon-testnet": "node dist/index.js daemon --testnet --api-key=YOUR_API_KEY --chain=ADA", |
14 | | - "start": "yarn build && node dist/index.js" |
| 22 | + "build": "tsup", |
| 23 | + "lint": "eslint .", |
| 24 | + "test": "jest", |
| 25 | + "run-daemon-testnet": "yarn start daemon --testnet --apiKey=YOUR_API_KEY --chain=ADA", |
| 26 | + "start": "node --experimental-modules dist/index.js" |
15 | 27 | }, |
16 | 28 | "files": [ |
17 | 29 | "dist/" |
|
38 | 50 | "url": "https://github.com/tatumio/tatum-kms/issues" |
39 | 51 | }, |
40 | 52 | "homepage": "https://github.com/tatumio/tatum-kms#readme", |
| 53 | + "resolutions": { |
| 54 | + "minimatch@*": "^9.0.5" |
| 55 | + }, |
41 | 56 | "dependencies": { |
42 | | - "@aws-sdk/client-secrets-manager": "^3.445.0", |
43 | | - "@tatumio/cardano": "^2.2.72", |
44 | | - "@tatumio/celo": "^2.2.72", |
45 | | - "@tatumio/solana": "^2.2.72", |
| 57 | + "@aws-sdk/client-secrets-manager": "^3.669.0", |
| 58 | + "@tatumio/cardano": "^2.2.86", |
| 59 | + "@tatumio/celo": "^2.2.86", |
| 60 | + "@tatumio/solana": "^2.2.86", |
46 | 61 | "@tatumio/tatum": "^1.37.50", |
47 | 62 | "@tatumio/tatum-kcs": "^2.0.0-alpha.113", |
48 | | - "@tatumio/tron": "^2.2.72", |
49 | | - "@tatumio/xlm": "^2.2.72", |
50 | | - "@tatumio/xrp": "^2.2.72", |
| 63 | + "@tatumio/tron": "^2.2.86", |
| 64 | + "@tatumio/xlm": "^2.2.86", |
| 65 | + "@tatumio/xrp": "^2.2.86", |
51 | 66 | "agentkeepalive": "^4.5.0", |
| 67 | + "axios": "^1.7.9", |
52 | 68 | "crypto-js": "^4.2.0", |
53 | | - "dotenv": "^16.3.1", |
| 69 | + "dotenv": "^16.4.7", |
54 | 70 | "lodash": "^4.17.21", |
55 | | - "meow": "^7.0.1", |
| 71 | + "meow": "^13.2.0", |
56 | 72 | "readline-sync": "^1.4.10", |
57 | | - "reflect-metadata": "^0.1.13", |
58 | | - "semver": "^7.5.4", |
59 | | - "uuid": "^9.0.1" |
| 73 | + "semver": "^7.6.3", |
| 74 | + "uuid": "^11.0.4" |
60 | 75 | }, |
61 | 76 | "devDependencies": { |
| 77 | + "@types/jest": "^29.5.14", |
| 78 | + "@types/node": "^22.7.5", |
62 | 79 | "@types/readline-sync": "^1.4.7", |
63 | | - "@types/semver": "^7.5.5", |
64 | | - "@typescript-eslint/eslint-plugin": "^6.10.0", |
65 | | - "@typescript-eslint/parser": "^6.10.0", |
66 | | - "eslint": "^8.53.0", |
67 | | - "rimraf": "^5.0.5", |
68 | | - "typescript": "^5.2.2" |
| 80 | + "@types/semver": "^7.5.8", |
| 81 | + "@typescript-eslint/eslint-plugin": "8.19.0", |
| 82 | + "@typescript-eslint/parser": "8.19.0", |
| 83 | + "eslint": "^9.12.0", |
| 84 | + "jest": "^29.7.0", |
| 85 | + "jest-ctrf-json-reporter": "^0.0.9", |
| 86 | + "ts-jest": "^29.2.5", |
| 87 | + "tsup": "^8.3.5", |
| 88 | + "typescript": "^5.6.3", |
| 89 | + "typescript-eslint": "^8.15.0" |
69 | 90 | } |
70 | 91 | } |
0 commit comments