2.4 Dependency Updates #261
4 changed files with 1795 additions and 1365 deletions
41
package.json
41
package.json
|
@ -7,7 +7,7 @@
|
|||
"exports": "./dist/index.js",
|
||||
"typings": "./dist/index.d.ts",
|
||||
"bin": {
|
||||
"random-bunny": "./dist/cli.js"
|
||||
"random-bunny": "./dist/cli.js"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"keywords": [
|
||||
|
@ -20,11 +20,11 @@
|
|||
"placeholder"
|
||||
],
|
||||
"dependencies": {
|
||||
"commander": "^12.0.0",
|
||||
"commander": "^14.0.0",
|
||||
"glob-parent": "^6.0.0",
|
||||
"got-cjs": "^12.5.4",
|
||||
"htmlparser2": "^9.1.0",
|
||||
"linqts": "^1.14.4"
|
||||
"htmlparser2": "^10.0.0",
|
||||
"linqts": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
|
@ -41,24 +41,27 @@
|
|||
"homepage": "https://gitea.vylpes.xyz/RabbitLabs/random-bunny",
|
||||
"funding": "https://ko-fi.com/vylpes",
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.1.0",
|
||||
"@eslint/js": "^9.8.0",
|
||||
"@eslint/eslintrc": "^3.3.1",
|
||||
"@eslint/js": "^9.30.1",
|
||||
"@jest/globals": "^30.0.4",
|
||||
"@types/eslint": "^9.6.0",
|
||||
"@types/jest": "^29.5.8",
|
||||
"@types/node": "^22.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
||||
"@typescript-eslint/parser": "^8.0.0",
|
||||
"@yao-pkg/pkg": "^6.1.1",
|
||||
"eslint": "^9.8.0",
|
||||
"jest": "^29.7.0",
|
||||
"jest-mock-extended": "^3.0.7",
|
||||
"np": "^10.0.0",
|
||||
"ts-jest": "^29.1.1",
|
||||
"@types/jest": "^30.0.0",
|
||||
"@types/node": "^24.0.12",
|
||||
"@typescript-eslint/eslint-plugin": "^8.36.0",
|
||||
"@typescript-eslint/parser": "^8.36.0",
|
||||
"@yao-pkg/pkg": "^6.5.1",
|
||||
"eslint": "^9.30.1",
|
||||
"jest": "^30.0.4",
|
||||
"jest-mock-extended": "^4.0.0",
|
||||
"np": "^10.2.0",
|
||||
"ts-jest": "^29.4.0",
|
||||
"ts-mockito": "^2.6.1",
|
||||
"typescript": "^5.0.0",
|
||||
"typescript-eslint": "^7.18.0"
|
||||
"typescript": "^5.8.3",
|
||||
"typescript-eslint": "^8.36.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"**/brace-expansion": "^2.0.2"
|
||||
},
|
||||
"resolutions": {},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
|
|
|
@ -10,7 +10,7 @@ const program = new Command();
|
|||
program
|
||||
.name('random-bunny')
|
||||
.description('Get a random image url from a subreddit of your choosing')
|
||||
.version('2.3')
|
||||
.version('2.4')
|
||||
.option('-s, --subreddit <subreddit>', 'The subreddit to search', 'rabbits')
|
||||
.option('-j, --json', 'Output as JSON')
|
||||
.option('-q, --query-metadata', 'Include query metadata in result')
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
// "noEmit": true, /* Do not emit outputs. */
|
||||
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
||||
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
||||
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
||||
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
||||
|
||||
/* Strict Type-Checking Options */
|
||||
"strict": true, /* Enable all strict type-checking options. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue