@vpdn/moneymoney-cli
Version:
Command-line interface for MoneyMoney app - list accounts and fetch transactions
61 lines (60 loc) • 1.32 kB
JSON
{
"name": "@vpdn/moneymoney-cli",
"version": "1.1.4",
"description": "Command-line interface for MoneyMoney app - list accounts and fetch transactions",
"main": "dist/index.js",
"bin": {
"moneymoney-cli": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"moneymoney",
"finance",
"banking",
"cli",
"macos",
"transactions",
"accounts"
],
"author": "Vinh Phuc Dinh",
"license": "MIT",
"homepage": "https://github.com/vpdn/moneymoney-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vpdn/moneymoney-cli.git"
},
"bugs": {
"url": "https://github.com/vpdn/moneymoney-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"type": "commonjs",
"devDependencies": {
"@types/node": "^24.0.15",
"@types/plist": "^3.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"commander": "^14.0.0",
"csv-parse": "^6.1.0",
"plist": "^3.1.0",
"xml2js": "^0.6.2"
}
}