Install PapaParse package

This commit is contained in:
2025-04-01 11:48:18 +02:00
parent 5681a39ff9
commit eec5d3c981
3 changed files with 22 additions and 5 deletions

21
package-lock.json generated
View File

@@ -9,7 +9,9 @@
"version": "0.0.1",
"license": "ISC",
"dependencies": {
"@actual-app/api": "^25.3.1"
"@actual-app/api": "^25.3.1",
"@types/papaparse": "^5.3.15",
"papaparse": "^5.5.2"
},
"bin": {
"actual-ing": "dist/index.js"
@@ -107,12 +109,20 @@
"version": "22.13.15",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.15.tgz",
"integrity": "sha512-imAbQEEbVni6i6h6Bd5xkCRwLqFc8hihCsi2GbtDoAtUcAFQ6Zs4pFXTZUUbroTkXdImczWM9AI8eZUuybXE3w==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
}
},
"node_modules/@types/papaparse": {
"version": "5.3.15",
"resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.15.tgz",
"integrity": "sha512-JHe6vF6x/8Z85nCX4yFdDslN11d+1pr12E526X8WAfhadOeaOTx5AuIkvDKIBopfvlzpzkdMx4YyvSKCM9oqtw==",
"license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
@@ -778,6 +788,12 @@
"wrappy": "1"
}
},
"node_modules/papaparse": {
"version": "5.5.2",
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.2.tgz",
"integrity": "sha512-PZXg8UuAc4PcVwLosEEDYjPyfWnTEhOrUfdv+3Bx+NuAb+5NhDmXzg5fHWmdCh1mP5p7JAZfFr3IMQfcntNAdA==",
"license": "MIT"
},
"node_modules/path-type": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
@@ -1185,7 +1201,6 @@
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
"dev": true,
"license": "MIT"
},
"node_modules/util-deprecate": {

View File

@@ -19,6 +19,8 @@
"typescript": "^5.6.3"
},
"dependencies": {
"@actual-app/api": "^25.3.1"
"@actual-app/api": "^25.3.1",
"@types/papaparse": "^5.3.15",
"papaparse": "^5.5.2"
}
}

View File

@@ -7,5 +7,5 @@ buildNpmPackage {
pname = "actual-ing";
version = "0.0.1";
src = ./.;
npmDepsHash = "sha256-9drWid96ZXkb6/Rxa+2Rp9rFKw27ErUQkSx0FJfF55I=";
npmDepsHash = "sha256-7H9AAVlcCLEMLJ7iEPQykhjo2h4WkbtkN+Eo7KsgBAw=";
}