mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* 🔖 (26.2.0) * Remove used release notes * docs pages * s/flathub/Flathub * s/coderabbit/CodeRabbit * allowlist --------- Co-authored-by: matt-fidd <81489167+matt-fidd@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk>
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "@actual-app/api",
|
|
"version": "26.2.0",
|
|
"description": "An API for Actual",
|
|
"license": "MIT",
|
|
"files": [
|
|
"@types",
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "@types/index.d.ts",
|
|
"scripts": {
|
|
"build:app": "yarn workspace loot-core build:api",
|
|
"build:crdt": "yarn workspace @actual-app/crdt build",
|
|
"build:node": "tsc --p tsconfig.dist.json && tsc-alias -p tsconfig.dist.json",
|
|
"build:migrations": "cp migrations/*.sql dist/migrations",
|
|
"build:default-db": "cp default-db.sqlite dist/",
|
|
"build": "yarn run clean && yarn run build:app && yarn run build:node && yarn run build:migrations && yarn run build:default-db",
|
|
"test": "yarn run clean && yarn run build:app && yarn run build:crdt && vitest --run",
|
|
"clean": "rm -rf dist @types"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/crdt": "workspace:^",
|
|
"better-sqlite3": "^12.5.0",
|
|
"compare-versions": "^6.1.1",
|
|
"node-fetch": "^3.3.2",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsc-alias": "^1.8.16",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|