Track package.json and package-lock.json for reproducible installs

Previously both were gitignored, requiring npm init + npm install on
every fresh clone. Now only node_modules/ is ignored.
This commit is contained in:
2026-03-22 13:55:07 -04:00
parent a6e841b4eb
commit 28babb178d
3 changed files with 638 additions and 2 deletions

9
scripts/package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "actual-budget-skill",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@actual-app/api": "^26.3.0"
}
}