-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"name": "@sakowicz/actual-ai",
"version": "2.4.1",
"description": "Transaction AI classification for Actual Budget app.",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev-docker": "../node_modules/.bin/nodemon --exec \"npm run lint && ts-node ./app.ts\"",
"dev": "nodemon --exec \"npm run lint && ts-node ./app.ts\"",
"lint": "eslint --fix **/*.ts",
"prod": "node dist/app.js",
"test": "jest"
},
"keywords": [],
"author": "Szymon Sakowicz <info@sakowi.cz>",
"license": "MIT",
"dependencies": {
"@actual-app/api": "^26.6.0",
"@actual-app/core": "^26.6.0",
"@ai-sdk/anthropic": "^1.2.9",
"@ai-sdk/google": "^1.2.12",
"@ai-sdk/groq": "^1.2.7",
"@ai-sdk/openai": "^1.3.10",
"@types/jest": "^29.5.14",
"ai": "^4.3.5",
"axios": "^1.8.1",
"dotenv": "^16.5.0",
"handlebars": "^4.7.8",
"natural": "^8.1.1",
"node-cron": "^3.0.3",
"ollama-ai-provider": "^1.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/natural": "^5.1.5",
"@types/node": "^22.14.1",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.3.2"
},
"engines": {
"node": ">=22"
}
}