mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 04:18:51 -05:00
* [AI] Enable subpath imports across all packages Generalize the prefer-subpath-imports ESLint rule to work with any package (not just loot-core) and enable it globally. Add subpath import mappings to cli, component-library, and sync-server package.json files. Auto-fix all backtracked relative imports to use #-prefixed subpath imports. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * [AI] Add release notes for #7462 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * [AI] Fix mock specifiers in accounts.test.ts to use aliased imports Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com> * [AI] Fix mock specifiers in query.test.ts to use aliased imports Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com> * [AI] Fix ESLint rule to properly validate src/ directory paths Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com> * [AI] Add publishConfig.imports for sync-server to remap aliases to build directory Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com>
44 lines
977 B
JSON
44 lines
977 B
JSON
{
|
|
"name": "@actual-app/cli",
|
|
"version": "26.4.0",
|
|
"description": "CLI for Actual Budget",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"actual": "./dist/cli.js",
|
|
"actual-cli": "./dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"imports": {
|
|
"#commands/*": "./src/commands/*.ts",
|
|
"#config": "./src/config.ts",
|
|
"#connection": "./src/connection.ts",
|
|
"#input": "./src/input.ts",
|
|
"#output": "./src/output.ts",
|
|
"#utils": "./src/utils.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"test": "vitest --run",
|
|
"typecheck": "tsgo -b"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/api": "workspace:*",
|
|
"cli-table3": "^0.6.5",
|
|
"commander": "^13.0.0",
|
|
"cosmiconfig": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.15",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
|
|
"rollup-plugin-visualizer": "^6.0.11",
|
|
"vite": "^8.0.5",
|
|
"vitest": "^4.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
}
|
|
}
|