mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 00:38:14 +08:00
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "@qinglong/local-mcp-server",
|
|
"version": "3.0.0-alpha.2",
|
|
"private": true,
|
|
"description": "QingLong 3.0 optional authenticated local MCP stdio server",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=24.18.0 <25"
|
|
},
|
|
"main": "dist/application-runtime/mcpServer.js",
|
|
"types": "dist/application-runtime/mcpServer.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/application-runtime/mcpServer.d.ts",
|
|
"require": "./dist/application-runtime/mcpServer.js",
|
|
"default": "./dist/application-runtime/mcpServer.js"
|
|
},
|
|
"./config": {
|
|
"types": "./dist/production-process/config.d.ts",
|
|
"require": "./dist/production-process/config.js",
|
|
"default": "./dist/production-process/config.js"
|
|
},
|
|
"./process": {
|
|
"types": "./dist/production-process/processApplication.d.ts",
|
|
"require": "./dist/production-process/processApplication.js",
|
|
"default": "./dist/production-process/processApplication.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*.js",
|
|
"dist/**/*.d.ts"
|
|
],
|
|
"bin": {
|
|
"ql3-mcp": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"check": "node ../../scripts/ql3-build-package-closure.cjs && tsc -p tsconfig.json --noEmit",
|
|
"test": "node ../../scripts/ql3-build-package-closure.cjs && node --test test/*.test.cjs"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/server": "2.0.0",
|
|
"@qinglong/local-command-file": "workspace:*",
|
|
"@qinglong/local-owner-console": "workspace:*",
|
|
"@qinglong/local-sqlite": "workspace:*",
|
|
"@qinglong/runtime-core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.13.3",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|