package.json•2.76 kB
{
"name": "mcp-dincoder",
"version": "0.7.1",
"description": "DinCoder - Driven Intent Negotiation Contract-Oriented Deterministic Executable Runtime. The Spec-Driven MCP server for Intent → Contracts → Deterministic Execution.",
"type": "module",
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./stdio": {
"import": "./dist/index-stdio.js",
"types": "./dist/index-stdio.d.ts"
}
},
"bin": {
"mcp-dincoder": "./dist/index-stdio.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"dev:local": "tsx watch src/index-stdio.ts",
"dev:http": "tsx watch src/index.ts",
"build:local": "tsup src/index-stdio.ts src/index.ts --format esm --dts --clean",
"start": "node dist/index-stdio.js",
"start:http": "node dist/index.js",
"lint": "eslint .",
"format": "prettier --write --no-error-on-unmatched-pattern \"src/**/*.{ts,tsx,js,jsx,cjs,mjs,json}\" \"tests/**/*.{ts,tsx,js,jsx,cjs,mjs,json}\" \"scripts/**/*.{ts,tsx,js,jsx,cjs,mjs}\" \"docs/**/*.{md,mdx}\" \"templates/**/*.{md,mdx,json}\" \"examples/**/*.{ts,tsx,js,jsx,md}\" \"*.{js,ts,tsx,cjs,mjs,json,md,mdx,yaml,yml}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"precommit": "npm run build:local && npm run lint && npm run test",
"prepare": "husky"
},
"keywords": [
"mcp",
"model-context-protocol",
"spec-kit",
"spec-driven-development",
"sdd",
"dincoder",
"ai-coding",
"streamable-http",
"smithery",
"claude-code",
"github-copilot",
"contract-oriented",
"deterministic"
],
"author": "DinCoder Contributors",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/dincoder/mcp-server"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"@smithery/sdk": "^1.6.8",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"markdownlint": "^0.39.0",
"markdownlint-rule-helpers": "^0.30.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/express": "^5.0.3",
"@types/node": "^24.3.1",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.35.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"tsoa": "^6.6.0",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vitest": "^3.2.4"
}
}