Files
core/package.json
Innei f369e9c942 chore(deps): update package dependencies for improved stability
- Upgraded @types/node to 24.0.1 and zod to 3.25.63 across multiple package.json files for better type safety and compatibility.
- Updated cache-manager to version 7.0.0 and keyv to 5.3.4 in core and compiled packages.
- Adjusted openai version to 5.3.0 in core package for enhanced functionality.
- Refactored TypeScript configuration to include es2022 in the lib array for broader language feature support.

Signed-off-by: Innei <tukon479@gmail.com>
2025-06-12 23:06:56 +08:00

60 lines
2.0 KiB
JSON

{
"private": true,
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"license": "AGPLv3",
"homepage": "https://github.com/mx-space/core#readme",
"repository": {
"directory": "mx-space/core",
"url": "https://github.com/mx-space/core"
},
"author": "Innei <https://innei.in>",
"scripts": {
"format": "prettier --write \"apps/**/*.ts\" \"test/**/*.ts\" \"packages/**/*.ts\"",
"prepare": "simple-git-hooks && node scripts/init-project.mjs",
"build:external": "pnpm -C \"packages/compiled\" run build",
"build": "pnpm run build:external && pnpm -C \"apps/core\" run build",
"dev": "pnpm run build:external && pnpm -C \"apps/core\" run start",
"bundle": "pnpm run build:external && pnpm -C \"apps/core\" run bundle",
"test": "pnpm run build:external && pnpm -C \"apps/core\" run test",
"lint": "pnpm -C \"apps/core\" run lint",
"publish:core": "cd apps/core && npm run publish"
},
"devDependencies": {
"@innei/prettier": "0.15.0",
"@sxzz/eslint-config": "7.0.2",
"@types/node": "24.0.1",
"cross-env": "7.0.3",
"eslint": "^9.28.0",
"lint-staged": "16.1.0",
"mongodb-memory-server": "10.1.4",
"prettier": "3.5.3",
"redis-memory-server": "0.12.1",
"rimraf": "6.0.1",
"simple-git-hooks": "2.13.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.5.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"zx-cjs": "7.0.7-0"
},
"resolutions": {
"get-pixels@^3>request": "./external/request",
"mongodb": "6.12.0",
"pino": "./external/pino",
"semver": "7.7.1",
"typescript": "5.8.3",
"whatwg-url": "14.1.1",
"zod": "3.25.63"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-path ./.prettierignore --write "
]
},
"issues": "https://github.com/mx-space/core/issues"
}