7 Commits

Author SHA1 Message Date
ace2c3c180 update dependencies 2025-08-18 14:25:38 -05:00
3019f9132f omit dev 2025-06-17 15:51:28 -05:00
a04ffade6f install python 2025-06-17 15:46:54 -05:00
a243892fd4 bump dependencies 2025-06-17 15:38:46 -05:00
1db899b5c8 4.1.2: dependencies 2025-05-04 12:55:07 -05:00
fc71bc08db Merge pull request #2 from CorySanin/dependabot/npm_and_yarn/tar-fs-2.1.2
Bump tar-fs from 2.1.1 to 2.1.2
2025-05-04 12:46:38 -05:00
dependabot[bot]
c560100a8b Bump tar-fs from 2.1.1 to 2.1.2
Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.1 to 2.1.2.
- [Commits](https://github.com/mafintosh/tar-fs/compare/v2.1.1...v2.1.2)

---
updated-dependencies:
- dependency-name: tar-fs
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-28 23:57:01 +00:00
3 changed files with 1200 additions and 964 deletions

View File

@@ -6,7 +6,7 @@ FROM baseimg AS build-env
WORKDIR /usr/notifier
RUN pacman -Sy --noconfirm nodejs npm typescript
RUN pacman -Sy --noconfirm nodejs npm typescript python
COPY package*.json ./
@@ -16,7 +16,7 @@ COPY . .
RUN tsc && \
npm run-script build && \
npm ci --only=production
npm ci --omit=dev
FROM baseimg AS deploy

2135
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "artix-checkupdates-web",
"version": "4.1.1",
"version": "4.1.4",
"description": "Determine packages that need attention",
"main": "./distribution/index.js",
"type": "module",
@@ -31,26 +31,25 @@
"homepage": "https://github.com/CorySanin/artix-checkupdates-web#readme",
"dependencies": {
"artix-checkupdates": "1.0.2",
"better-sqlite3": "11.9.1",
"better-sqlite3": "12.2.0",
"dayjs": "1.11.13",
"ejs": "3.1.10",
"express": "4.21.2",
"express": "5.1.0",
"express-useragent": "1.0.15",
"irc-framework": "4.14.0",
"json5": "2.2.3",
"ky": "1.7.5",
"node-cron": "3.0.3",
"ky": "1.8.2",
"node-cron": "4.2.1",
"prom-client": "15.1.3",
"sharp": "0.33.5"
"sharp": "0.34.3"
},
"devDependencies": {
"@sindresorhus/tsconfig": "7.0.0",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@sindresorhus/tsconfig": "8.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/express-useragent": "1.0.5",
"@types/node": "22.10.7",
"@types/node-cron": "3.0.11",
"forking-build-shit": "0.0.2",
"typescript": "5.7.3"
"@types/node": "^24.3.0",
"forking-build-shit": "1.0.1",
"typescript": "5.9.2"
}
}