-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "actual-moneymoney",
"version": "2.8.0",
"description": "An importer for syncing MoneyMoney accounts and transactions to Actual.",
"exports": "./index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier --check 'src/**/*.ts'"
},
"type": "module",
"keywords": [
"actual",
"moneymoney",
"finance",
"budget",
"sync",
"import",
"importer"
],
"bin": {
"actual-monmon": "./dist/index.js"
},
"files": [
"dist"
],
"author": "NikxDa",
"license": "MIT",
"dependencies": {
"@actual-app/api": "^25.1.0",
"chalk": "^5.4.1",
"date-fns": "^4.1.0",
"moneymoney": "^1.2.1",
"node-fetch": "^3.3.2",
"openai": "^3.2.1",
"toml": "^3.0.0",
"yargs": "^17.7.2",
"zod": "^3.24.1"
},
"node": ">=16",
"devDependencies": {
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}