{ "name": "@axint/compiler", "version": "0.6.0", "mcpName": "io.github.agenticempire/axint", "publishConfig": { "access": "public" }, "type": "module", "description": "Proof and repair for Apple coding agents: validate Swift, run Xcode evidence, repair failures, and generate inspectable Apple-native capabilities.", "author": "Axint contributors", "license": "Apache-2.0", "homepage": "https://axint.ai", "repository": { "type": "git", "url": "git+https://github.com/agenticempire/axint.git" }, "bugs": { "url": "https://github.com/agenticempire/axint/issues" }, "keywords": [ "compiler", "apple-intents", "app-intents", "swift", "siri", "shortcuts", "ai-agents", "a2a", "agent2agent", "mcp", "code-generation", "model-context-protocol", "mcp-server", "swiftui", "widgetkit", "xcode", "ios", "macos", "typescript", "developer-tools" ], "engines": { "node": ">=22" }, "bin": { "axint": "dist/cli/index.js", "create-axint-app": "dist/cli/index.js", "axint-a2a": "dist/a2a/index.js", "axint-mcp": "dist/mcp/register.js", "axint-mcp-http": "dist/mcp/http.js" }, "main": "./dist/core/index.js", "types": "./dist/core/index.d.ts", "exports": { ".": { "import": "./dist/core/index.js", "types": "./dist/core/index.d.ts" }, "./sdk": { "import": "./dist/sdk/index.js", "types": "./dist/sdk/index.d.ts" }, "./mcp": { "import": "./dist/mcp/index.js", "types": "./dist/mcp/index.d.ts" }, "./a2a": { "import": "./dist/a2a/index.js", "types": "./dist/a2a/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE", "NOTICE", "TRADEMARKS.md" ], "scripts": { "build": "tsup", "dev": "tsx src/cli/index.ts", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "bench": "vitest bench", "benchmark:brownfield": "tsx scripts/run-brownfield-benchmark.ts", "benchmark:brownfield:check": "tsx scripts/run-brownfield-benchmark.ts --check", "lint": "eslint src/ tests/", "format": "prettier --write .", "typecheck": "tsc --noEmit", "typecheck:examples": "tsc --noEmit -p tsconfig.examples.json", "clean": "rm -rf dist", "gen:swift-fixer": "tsx scripts/gen-swift-fixer.ts", "gen:swift-fixer:check": "tsx scripts/gen-swift-fixer.ts --check", "versions:sync": "node scripts/sync-versions.mjs", "versions:check": "node scripts/check-versions.mjs", "mcp:registry:check": "node scripts/check-mcp-registry-manifest.mjs", "release:check": "node scripts/check-release-parity.mjs", "release:notes": "tsx scripts/render-release-notes.ts", "install:gauntlet": "node scripts/install-gauntlet.mjs", "package:check": "node scripts/check-package-artifact.mjs", "metrics:emit": "node scripts/emit-metrics.mjs", "metrics:check": "node scripts/check-metrics.mjs", "mcp:production:check": "node scripts/check-mcp-production.mjs", "boundary:check": "node scripts/check-public-boundary.mjs", "docs:check": "node scripts/check-readme-mcp-docs.mjs && node scripts/sync-roadmap-metrics.mjs --check && node scripts/check-public-docs.mjs && node scripts/check-local-links.mjs", "roadmap:sync": "node scripts/sync-roadmap-metrics.mjs", "quality:local": "npm run versions:check && npm run mcp:registry:check && npm run metrics:check && npm run benchmark:brownfield:check && npm run docs:check && npm run boundary:check && npm run gen:swift-fixer:check && npm run typecheck && npm run typecheck:examples && npm run lint && npm run build && npm run package:check && npm test && npm audit --audit-level=moderate", "quality:production": "npm run quality:local && npm run install:gauntlet && npm run mcp:production:check", "prepublishOnly": "npm run versions:check && npm run mcp:registry:check && npm run metrics:check && npm run docs:check && npm run clean && npm run build", "prepare": "husky" }, "lint-staged": { "src/**/*.ts": [ "eslint --fix", "prettier --write" ], "tests/**/*.ts": [ "eslint --fix", "prettier --write" ] }, "devDependencies": { "@eslint/js": "^10.0.1", "@modelcontextprotocol/sdk": "^1.30.0", "@types/express": "^5.0.3", "@types/node": "^26.0.0", "@vitest/coverage-v8": "^4.1.10", "eslint": "^10.2.1", "husky": "^9.0.0", "lint-staged": "^17.0.7", "prettier": "^3.5.0", "tsup": "^8.5.0", "tsx": "^4.19.0", "typescript-eslint": "^8.64.0", "vite": "^8.1.5", "vitest": "^4.1.10" }, "dependencies": { "@a2a-js/sdk": "1.0.1", "commander": "^15.0.0", "express": "^5.1.0", "typescript": "^6.0.3" }, "overrides": { "@hono/node-server": "2.0.12", "body-parser": "2.3.0", "brace-expansion": "5.0.9", "esbuild": "^0.28.1", "fast-uri@>=3.0.0 <3.1.5": "3.1.5", "hono": "4.12.34", "ip-address": "^10.4.0", "jose": "6.2.7", "postcss": "8.5.25", "vite": "^8.1.5" } }