39 lines
923 B
JSON
39 lines
923 B
JSON
{
|
|
"name": "actual-importer",
|
|
"version": "0.0.1",
|
|
"description": "The utility which imports transactions from CSV sources to Actual budget",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"build": "tsc && tsc-alias"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"views"
|
|
],
|
|
"author": "Bartłomiej Pluta <noreply.git@mx.bartlomiejpluta.com>",
|
|
"license": "ISC",
|
|
"bin": {
|
|
"actual-importer": "./dist/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.9.0",
|
|
"tsc-alias": "^1.8.10",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/api": "^25.3.1",
|
|
"@types/express": "^5.0.1",
|
|
"@types/multer": "^1.4.12",
|
|
"@types/papaparse": "^5.3.15",
|
|
"classnames": "^2.5.1",
|
|
"commander": "^13.1.0",
|
|
"express": "^5.1.0",
|
|
"iconv-lite": "^0.6.3",
|
|
"multer": "^1.4.5-lts.2",
|
|
"papaparse": "^5.5.2",
|
|
"yaml": "^2.7.1"
|
|
}
|
|
}
|