-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.15 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
70
71
72
73
74
{
"name": "mcm-agent",
"version": "0.1.1",
"description": "Configuration management agent for Mojaloop MCM client with TUI and CLI",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"bin": {
"mcm-agent": "./dist/cli.js"
},
"scripts": {
"build": "vite build",
"dev": "tsx watch src/index.ts",
"dev:tui": "tsx src/cli.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:unit": "vitest run",
"test:xunit": "vitest run",
"test:coverage": "vitest --coverage",
"test:coverage-check": "echo 'No coverage check configured'",
"test:integration": "echo 'No integration tests yet'",
"test:functional": "echo 'No functional tests yet'",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"release": "npx standard-version --no-verify --releaseCommitMessageFormat 'ci(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'ci(snapshot): {{currentTag}}'",
"lint": "eslint src",
"format": "prettier --write src"
},
"keywords": [
"mojaloop",
"mcm",
"configuration",
"tui",
"cli"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@mojaloop/mcm-client": "^4.0.0",
"@mojaloop/sdk-standard-components": "^19.18.4",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"env-var": "^7.5.0",
"fastify": "^5.6.2",
"figures": "^6.1.0",
"ink": "^6.6.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"pino": "^10.1.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.3",
"yaml": "^2.8.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.0.8",
"@types/react": "^19.2.8",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"memfs": "^4.56.4",
"prettier": "^3.7.4",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-node": "^7.0.0",
"vitest": "^4.0.17"
}
}