mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-28 00:28:40 -05:00
Web: https://github.com/actualbudget/actual/pull/1087 Server: https://github.com/actualbudget/actual-server/pull/207 Docs: https://github.com/actualbudget/docs/pull/179 --------- Co-authored-by: Jed Fox <git@jedfox.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
28 lines
752 B
JSON
28 lines
752 B
JSON
{
|
|
"name": "@actual-app/api",
|
|
"version": "6.1.0",
|
|
"license": "MIT",
|
|
"description": "An API for Actual",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"build:app": "yarn workspace loot-core build:api",
|
|
"build:node": "tsc --p tsconfig.dist.json",
|
|
"build:migrations": "cp migrations/*.sql dist/migrations",
|
|
"build:default-db": "cp default-db.sqlite dist/",
|
|
"build": "rm -rf dist && yarn run build:app && yarn run build:node && yarn run build:migrations && yarn run build:default-db"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^8.2.0",
|
|
"node-fetch": "^2.6.9",
|
|
"uuid": "3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.2"
|
|
}
|
|
}
|