package.jsonā¢3.17 kB
{
"name": "@vfarcic/dot-ai",
"version": "0.110.0",
"description": "AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance",
"mcpName": "io.github.vfarcic/dot-ai",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dot-ai-mcp": "./dist/mcp/server.js"
},
"exports": {
".": "./dist/index.js",
"./mcp": "./dist/mcp/server.js"
},
"scripts": {
"test": "npm run test:integration",
"test:integration:teardown": "./tests/integration/infrastructure/teardown-cluster.sh",
"test:integration:server": "KUBECONFIG=./kubeconfig-test.yaml PORT=3456 DOT_AI_SESSION_DIR=./tmp/sessions TRANSPORT_TYPE=http QDRANT_URL=http://localhost:6335 QDRANT_CAPABILITIES_COLLECTION=capabilities-policies ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY OPENAI_API_KEY=$OPENAI_API_KEY node dist/mcp/server.js",
"test:integration": "./tests/integration/infrastructure/run-integration-tests.sh",
"test:integration:watch": "vitest --config=vitest.integration.config.ts --test-timeout=1200000",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run lint",
"build": "tsc --sourceMap false",
"postbuild": "chmod +x dist/mcp/server.js",
"build:prod": "npm run clean && tsc --sourceMap false --removeComments true",
"build:dev": "tsc --sourceMap true",
"build:watch": "tsc --watch",
"build:mcp": "npm run build && echo 'MCP server built successfully'",
"dev": "ts-node src/index.ts",
"start:mcp": "node dist/mcp/server.js",
"lint": "eslint src/ --ext .ts",
"format": "prettier --write src/",
"audit": "npm audit",
"version:dev": "npm version patch --preid=devel --prerelease",
"version:prod": "npm version patch"
},
"keywords": [
"kubernetes",
"deployment",
"mcp",
"devops",
"containers",
"ai",
"automation",
"cloud-native"
],
"author": "Viktor Farcic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vfarcic/dot-ai.git"
},
"bugs": {
"url": "https://github.com/vfarcic/dot-ai/issues"
},
"homepage": "https://github.com/vfarcic/dot-ai#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"prompts",
"shared-prompts",
"scripts",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/glob": "^9.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/ui": "^3.2.4",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.23",
"@ai-sdk/google": "^2.0.17",
"@ai-sdk/openai": "^2.0.42",
"@anthropic-ai/sdk": "^0.65.0",
"@kubernetes/client-node": "^1.3.0",
"@modelcontextprotocol/sdk": "^1.13.2",
"@qdrant/js-client-rest": "^1.15.0",
"ai": "^5.0.60",
"glob": "^11.0.3",
"openai": "^5.11.0",
"yaml": "^2.8.0",
"zod-to-json-schema": "^3.24.6"
}
}