build(deps): add package dependencies

This commit is contained in:
2025-06-11 18:33:36 -07:00
parent 0c0c3f4671
commit 6a9ca9993a
3 changed files with 14 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ import fs from 'fs';
import path from 'path'; import path from 'path';
import http from 'http'; import http from 'http';
import https from 'https'; import https from 'https';
import os from 'node:os';
import osName from 'os-name';
import zlib from 'zlib'; import zlib from 'zlib';
import chalk from 'chalk'; import chalk from 'chalk';
import ejs from 'ejs'; import ejs from 'ejs';

View File

@@ -13,6 +13,7 @@
"cron": "^4.3.1", "cron": "^4.3.1",
"ejs": "^3.1.10", "ejs": "^3.1.10",
"express": "^5.1.0", "express": "^5.1.0",
"getos": "^3.2.1",
"javascript-time-ago": "^2.5.11", "javascript-time-ago": "^2.5.11",
"moment": "^2.30.1", "moment": "^2.30.1",
"nconf": "^1.0.0-beta.2", "nconf": "^1.0.0-beta.2",
@@ -2468,6 +2469,15 @@
"url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
} }
}, },
"node_modules/getos": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz",
"integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
"license": "MIT",
"dependencies": {
"async": "^3.2.0"
}
},
"node_modules/glob-parent": { "node_modules/glob-parent": {
"version": "6.0.2", "version": "6.0.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",

View File

@@ -83,7 +83,8 @@
"express": "^5.1.0", "express": "^5.1.0",
"nconf": "^1.0.0-beta.2", "nconf": "^1.0.0-beta.2",
"javascript-time-ago": "^2.5.11", "javascript-time-ago": "^2.5.11",
"os-name": "^6.1.0" "os-name": "^6.1.0",
"getos": "^3.2.1"
}, },
"devDependencies": { "devDependencies": {
"@aetherinox/noxenv": "^1.1.1", "@aetherinox/noxenv": "^1.1.1",