* init Signed-off-by: Innei <tukon479@gmail.com> * update Signed-off-by: Innei <tukon479@gmail.com> * chore: update package dependencies and remove unused code - Updated package manager version in package.json to pnpm@10.10.0. - Removed references to `@modelcontextprotocol/sdk` from core application files. - Deleted unused `mcp.controller.ts` and cleaned up related imports in `mcp.module.ts`. - Adjusted optional dependencies in pnpm-lock.yaml. Signed-off-by: Innei <tukon479@gmail.com> * refactor: update AI summary and writer services to use new tools parser - Replaced `JsonOutputFunctionsParser` with `JsonOutputToolsParser` in both `ai-summary.service.ts` and `ai-writer.service.ts`. - Updated function definitions to align with the new tools structure, including changes to how functions are defined and invoked. - Enhanced error handling to return empty objects when no results are found. Signed-off-by: Innei <tukon479@gmail.com> --------- Signed-off-by: Innei <tukon479@gmail.com>
64 lines
2.1 KiB
JSON
64 lines
2.1 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"
|
|
},
|
|
"optionalDependencies": {
|
|
"mongodb-memory-server": "10.1.4",
|
|
"redis-memory-server": "0.12.1"
|
|
},
|
|
"dependencies": {
|
|
"zx-cjs": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@innei/prettier": "catalog:",
|
|
"@sxzz/eslint-config": "catalog:",
|
|
"@types/node": "catalog:conflicts_@types/node_22_14_0",
|
|
"cross-env": "catalog:",
|
|
"eslint": "catalog:",
|
|
"lint-staged": "catalog:",
|
|
"prettier": "catalog:",
|
|
"rimraf": "catalog:",
|
|
"simple-git-hooks": "catalog:",
|
|
"ts-node": "catalog:",
|
|
"tsconfig-paths": "catalog:",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vite-tsconfig-paths": "catalog:"
|
|
},
|
|
"resolutions": {
|
|
"get-pixels@^3>request": "./external/request",
|
|
"mongodb": "6.12.0",
|
|
"pino": "./external/pino",
|
|
"semver": "7.7.1",
|
|
"typescript": "5.7.3",
|
|
"whatwg-url": "14.1.1"
|
|
},
|
|
"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"
|
|
}
|