@enfiy/enfiy-code
Version:
Universal AI Code Assistant (Enfiy Code)
150 lines (149 loc) • 6.07 kB
JSON
{
"name": "@enfiy/enfiy-code",
"version": "0.1.13",
"description": "Universal AI Code Assistant (Enfiy Code)",
"author": "Hayate Esaki support@arterect.net (https://www.arterect.net)",
"license": "Apache-2.0",
"homepage": "https://github.com/enfiy/enfiy-code#readme",
"bugs": {
"url": "https://github.com/enfiy/enfiy-code/issues"
},
"repository": "enfiy/enfiy-code",
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"ai",
"assistant",
"enfiy",
"openai",
"mcp"
],
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"generate": "node scripts/generate-git-commit-info.js",
"build": "node scripts/build.js",
"build:prod": "NODE_ENV=production node scripts/build.js",
"build:fast": "npm run build --workspaces --if-present --parallel",
"build:sandbox": "node scripts/build_sandbox.js",
"build:all": "npm run build && npm run build:sandbox",
"clean": "rimraf dist bundle node_modules/.cache",
"prepare": "npm run format && npm run bundle",
"test": "npm run test --workspaces",
"test:ci": "npm run test:ci --workspaces --if-present",
"test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output",
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
"test:integration:sandbox:none": "ENFIY_SANDBOX=false node integration-tests/run-tests.js",
"test:integration:sandbox:docker": "ENFIY_SANDBOX=docker node integration-tests/run-tests.js",
"test:integration:sandbox:podman": "ENFIY_SANDBOX=podman node integration-tests/run-tests.js",
"start": "node scripts/start.js",
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
"lint:fix": "eslint . --fix",
"lint": "eslint . --ext .ts,.tsx",
"lint:ci": "npm run lint:ci --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "node scripts/format-quiet.js",
"format:check": "prettier --check .",
"pre-commit": "npm run format && git add -A",
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
"auth:npm": "npx google-artifactregistry-auth",
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
"auth": "npm run auth:npm && npm run auth:docker",
"prerelease:dev": "npm run prerelease:version --workspaces && npm run prerelease:deps --workspaces",
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js && node scripts/bundle-analyzer.js",
"bundle:prod": "npm run generate && NODE_ENV=production node esbuild.config.js && node scripts/copy_bundle_assets.js && node scripts/bundle-analyzer.js",
"bundle:analyze": "node scripts/bundle-analyzer.js",
"build:cli": "npm run build --workspace packages/cli",
"build:core": "npm run build --workspace packages/core",
"build:packages": "npm run build:core && npm run build:cli",
"build:sandbox:fast": "node scripts/build_sandbox.js --skip-npm-install-build",
"prepare:cli-packagejson": "node scripts/prepare-cli-packagejson.js",
"prepare:packages": "node scripts/prepare-cli-packagejson.js && node scripts/prepare-core-package.js",
"publish:sandbox": "node scripts/publish-sandbox.js",
"publish:npm": "npm publish --workspaces ${NPM_PUBLISH_TAG:+--tag=$NPM_PUBLISH_TAG} ${NPM_DRY_RUN:+--dry-run}",
"publish:release": "npm run build:packages && npm run prepare:cli-packagejson && npm run build:sandbox:fast && npm run publish:sandbox && npm run publish:npm",
"telemetry": "node scripts/telemetry.js",
"start:gcp": "concurrently --raw --kill-others \"npm run telemetry -- --target=gcp\" \"npm start\"",
"prepublishOnly": "node scripts/prepublish.js"
},
"bin": {
"enfiy-code": "./bundle/enfiy.js",
"enfiy": "./bundle/enfiy.js"
},
"files": [
"bundle/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/micromatch": "^4.0.9",
"@types/mime-types": "^3.0.1",
"@types/minimatch": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.0",
"cross-env": "^7.0.3",
"dotenv": "^17.2.0",
"esbuild": "^0.25.6",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-license-header": "^0.8.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"lodash": "^4.17.21",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"strip-json-comments": "^5.0.2",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4",
"which": "^5.0.0",
"yargs": "^17.7.2",
"zod": "^3.25.76"
},
"dependencies": {
"@google/genai": "^1.9.0",
"@modelcontextprotocol/sdk": "^1.15.1",
"@opentelemetry/api-logs": "^0.203.0",
"@opentelemetry/otlp-exporter-base": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-logs": "^0.203.0",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"@types/hast": "^3.0.4",
"@types/node": "^24.0.14",
"@types/shell-quote": "^1.7.5",
"@types/update-notifier": "^6.0.8",
"chalk": "^5.4.1",
"command-exists": "^1.2.9",
"diff": "^8.0.2",
"dotenv": "^17.2.0",
"gaxios": "^7.1.1",
"glob": "^11.0.3",
"ink": "^6.0.1",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"lowlight": "^3.3.0",
"mime-types": "^3.0.1",
"open": "^10.1.2",
"openai": "^5.9.0",
"react": "^19.1.0",
"read-package-up": "^11.0.0",
"shell-quote": "^1.8.3",
"string-width": "^7.2.0",
"strip-ansi": "^7.1.0",
"strip-json-comments": "^5.0.2",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2"
}
}