mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* bcrypt 5.0.2 -> 6.0.0 * supertest 6.3.4 -> 7.1.4 * pluggy-sdk 0.70.1 -> 0.74.0 * types * better-sqlite3 11.10.0 -> 12.2.0 * express-rate-limit 7.5.0 -> 8.0.1 * babel/core 7.27.1 -> 7.28.0 * typescript 5.8.3 -> 5.9.2 * node types * note * typechecker
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "@actual-app/api",
|
|
"version": "25.8.0",
|
|
"license": "MIT",
|
|
"description": "An API for Actual",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "@types/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"@types"
|
|
],
|
|
"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 build:app && yarn run build:crdt && vitest",
|
|
"clean": "rm -rf dist @types"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/crdt": "workspace:^",
|
|
"better-sqlite3": "^12.2.0",
|
|
"compare-versions": "^6.1.1",
|
|
"node-fetch": "^3.3.2",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsc-alias": "^1.8.16",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|