package.json•2.15 kB
{
"name": "devflow-mcp",
"version": "1.0.0",
"description": "DevFlow MCP (DFM) Server: Knowledge graph memory layer for software development workflows.",
"license": "MIT",
"author": "Gannon Hall",
"type": "module",
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"imports": {
"#*": "./src/*"
},
"bin": {
"dfm": "dist/cli/index.js",
"__dfm_bash_complete": "dist/cli/bash-complete.js"
},
"repository": {
"type": "git",
"url": "https://github.com/your-repo/devflow-mcp.git"
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"start": "tsx src/server/index.ts",
"dev": "tsx watch src/server/index.ts",
"test": "cross-env DFM_ENV=testing tsx --test src/**/*.test.ts",
"test:watch": "cross-env DFM_ENV=testing tsx --test --watch src/**/*.test.ts",
"test:coverage": "cross-env DFM_ENV=testing NODE_V8_COVERAGE=./coverage tsx --test --experimental-test-coverage src/**/*.test.ts",
"test:verbose": "cross-env DFM_ENV=testing tsx --test src/**/*.test.ts",
"test:integration": "bash scripts/run-integration-tests.sh",
"test:e2e": "bash scripts/run-e2e-tests.sh",
"check": "ultracite check",
"fix": "ultracite fix",
"doctor": "ultracite doctor"
},
"dependencies": {
"@modelcontextprotocol/sdk": "npm:@socotra/modelcontextprotocol-sdk",
"@stricli/auto-complete": "^1.2.4",
"@stricli/core": "^1.2.4",
"@takinprofit/sqlite-x": "^1.2.3",
"consola": "^3.4.2",
"dotenv": "^17.2.3",
"lru-cache": "^11.2.2",
"openai": "^6.4.0",
"sqlite-vec": "0.1.7-alpha.2",
"uuid": "^13.0.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"xdg-app-paths": "^8.3.0",
"zod": "^4.1.12",
"zod-validation-error": "^4.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^24.8.0",
"@types/uuid": "^11.0.0",
"lefthook": "^1.13.6",
"tsdown": "^0.15.7",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"ultracite": "^5.6.4"
},
"engines": {
"node": ">=23.5.0"
}
}