Merge branch 'dev' into 'main'
Dev See merge request illegitimate/illegitimate-bot!343
This commit is contained in:
@@ -10,5 +10,5 @@
|
|||||||
"TYPESCRIPT": "true"
|
"TYPESCRIPT": "true"
|
||||||
},
|
},
|
||||||
"ext": "ts",
|
"ext": "ts",
|
||||||
"exec": "tsx --inspect-brk"
|
"exec": "tsx --inspect-brk src/index.ts"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,5 +8,6 @@
|
|||||||
"env": {
|
"env": {
|
||||||
"NODE_ENV": "dev"
|
"NODE_ENV": "dev"
|
||||||
},
|
},
|
||||||
"ext": "js"
|
"ext": "js",
|
||||||
|
"exec": "node dist/index.js"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,5 @@
|
|||||||
"TYPESCRIPT": "true"
|
"TYPESCRIPT": "true"
|
||||||
},
|
},
|
||||||
"ext": "ts",
|
"ext": "ts",
|
||||||
"exec": "tsx"
|
"exec": "tsx src/index.ts"
|
||||||
}
|
}
|
||||||
|
|||||||
34
package.json
34
package.json
@@ -16,9 +16,9 @@
|
|||||||
"build": "swc src -d dist --strip-leading-paths",
|
"build": "swc src -d dist --strip-leading-paths",
|
||||||
"watch": "swc src -d dist --strip-leading-paths --watch",
|
"watch": "swc src -d dist --strip-leading-paths --watch",
|
||||||
"dev": "nodemon --config .nodemon/swc.json",
|
"dev": "nodemon --config .nodemon/swc.json",
|
||||||
"dev:ts": "nodemon --config .nodemon/ts.json src/index.ts",
|
"dev:ts": "nodemon --config .nodemon/ts.json",
|
||||||
"dev:ts:inspect": "nodemon --config .nodemon/debug.json src/index.ts",
|
"dev:ts:inspect": "nodemon --config .nodemon/debug.json",
|
||||||
"dev:js": "nodemon --config .nodemon/js.json dist/index.js",
|
"dev:js": "nodemon --config .nodemon/js.json",
|
||||||
"fmt": "dprint fmt \"**/*.ts\"",
|
"fmt": "dprint fmt \"**/*.ts\"",
|
||||||
"check": "pnpm tscheck && pnpm lint",
|
"check": "pnpm tscheck && pnpm lint",
|
||||||
"tscheck": "tsc",
|
"tscheck": "tsc",
|
||||||
@@ -36,35 +36,35 @@
|
|||||||
"author": "Taken",
|
"author": "Taken",
|
||||||
"license": "GPL-3.0-only",
|
"license": "GPL-3.0-only",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@swc/cli": "^0.7.3",
|
"@swc/cli": "^0.7.7",
|
||||||
"@swc/core": "^1.11.24",
|
"@swc/core": "^1.11.29",
|
||||||
"@t3-oss/env-core": "^0.13.4",
|
"@t3-oss/env-core": "^0.13.6",
|
||||||
"anilist": "^0.12.4",
|
"anilist": "^0.12.4",
|
||||||
"axios": "^1.9.0",
|
"axios": "^1.9.0",
|
||||||
"chalk": "^5.4.1",
|
"chalk": "^5.4.1",
|
||||||
"cron": "^4.3.0",
|
"cron": "^4.3.1",
|
||||||
"discord.js": "^14.19.3",
|
"discord.js": "^14.19.3",
|
||||||
"drizzle-orm": "^0.43.1",
|
"drizzle-orm": "^0.44.1",
|
||||||
"ioredis": "^5.6.1",
|
"ioredis": "^5.6.1",
|
||||||
"ms": "^2.1.3",
|
"ms": "^2.1.3",
|
||||||
"postgres": "^3.4.5",
|
"postgres": "^3.4.7",
|
||||||
"pretty-ms": "^9.2.0",
|
"pretty-ms": "^9.2.0",
|
||||||
"zod": "^3.24.3"
|
"zod": "^3.25.42"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.1",
|
"@eslint/eslintrc": "^3.3.1",
|
||||||
"@eslint/js": "^9.26.0",
|
"@eslint/js": "^9.28.0",
|
||||||
"@types/ms": "^2.1.0",
|
"@types/ms": "^2.1.0",
|
||||||
"@types/node": "^22.15.3",
|
"@types/node": "^22.15.29",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
"@typescript-eslint/eslint-plugin": "^8.33.0",
|
||||||
"@typescript-eslint/parser": "^8.31.1",
|
"@typescript-eslint/parser": "^8.33.0",
|
||||||
"chokidar": "^4.0.3",
|
"chokidar": "^4.0.3",
|
||||||
"dotenv": "^16.5.0",
|
"dotenv": "^16.5.0",
|
||||||
"dprint": "^0.49.1",
|
"dprint": "^0.50.0",
|
||||||
"drizzle-kit": "^0.31.1",
|
"drizzle-kit": "^0.31.1",
|
||||||
"eslint": "^9.26.0",
|
"eslint": "^9.28.0",
|
||||||
"eslint-plugin-drizzle": "^0.2.3",
|
"eslint-plugin-drizzle": "^0.2.3",
|
||||||
"globals": "^16.0.0",
|
"globals": "^16.2.0",
|
||||||
"nodemon": "^3.1.10",
|
"nodemon": "^3.1.10",
|
||||||
"tsx": "^4.19.4",
|
"tsx": "^4.19.4",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.8.3"
|
||||||
|
|||||||
1075
pnpm-lock.yaml
generated
1075
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user