Update dependencies

This commit is contained in:
Samuel Elliott 2022-09-22 22:06:38 +01:00
parent 9f001b83ff
commit 088604a509
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
5 changed files with 328 additions and 327 deletions

626
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -36,8 +36,8 @@
"cli-table": "^0.3.11",
"debug": "^4.3.4",
"discord-rpc": "^4.0.1",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"dotenv": "^16.0.2",
"dotenv-expand": "^9.0.0",
"env-paths": "^3.0.0",
"express": "^4.18.1",
"mkdirp": "^1.0.4",
@ -58,33 +58,33 @@
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.4.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/body-parser": "^1.19.2",
"@types/cli-table": "^0.3.0",
"@types/debug": "^4.1.7",
"@types/discord-rpc": "^4.0.3",
"@types/express": "^4.17.13",
"@types/express": "^4.17.14",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.7.13",
"@types/node": "^18.7.18",
"@types/node-notifier": "^8.0.2",
"@types/node-persist": "^3.1.2",
"@types/node-persist": "^3.1.3",
"@types/react": "^17.0.45",
"@types/react-native": "^0.67.7",
"@types/read": "^0.0.29",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.11",
"electron": "^20.0.3",
"@types/yargs": "^17.0.12",
"electron": "^20.2.0",
"electron-builder": "^23.3.3",
"frida": "^15.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native-web": "^0.17.7",
"rollup": "^2.78.1",
"rollup": "^2.79.1",
"rollup-plugin-polyfill-node": "^0.10.2",
"ts-json-schema-generator": "^1.0.0",
"typescript": "^4.7.4"
"ts-json-schema-generator": "^1.1.1",
"typescript": "^4.8.3"
},
"build": {
"appId": "uk.org.fancy.nxapi.app",

View File

@ -233,6 +233,7 @@ const app_browser = {
typescript({
noEmit: true,
declaration: false,
module: 'es2022',
}),
commonjs({
// the ".ts" extension is required

View File

@ -97,7 +97,7 @@ export interface TableOptions {
rows: Row[];
}
type RecursivePartial<T extends {}> = {
type RecursivePartial<T> = {
[P in keyof T]?: (T[P] extends Array<unknown> ? T[P] : RecursivePartial<T[P]>) | undefined;
};

View File

@ -2,7 +2,7 @@
"compilerOptions": {
"strict": true,
"target": "es2020",
"module": "es2022",
"module": "node16",
"jsx": "react",
"moduleResolution": "node16",
"allowSyntheticDefaultImports": true,