{
    "name": "@garden-io/grow-core",
    "version": "0.3.3",
    "author": "Garden Technologies, Inc. <info@garden.io>",
    "license": "MPL-2.0",
    "homepage": "https://github.com/garden-io/grow",
    "type": "module",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/garden-io/grow.git"
    },
    "exports": {
        ".": "./build/index.js"
    },
    "files": [
        "build"
    ],
    "bin": {
        "grow": "./build/bin.js"
    },
    "dependencies": {
        "@garden-io/grow-sdk": "^0.7.1",
        "@opentelemetry/api": "^1.9.0",
        "@opentelemetry/core": "^1.25.1",
        "@opentelemetry/exporter-jaeger": "^1.25.1",
        "@opentelemetry/exporter-trace-otlp-http": "0.52.1",
        "@opentelemetry/instrumentation-http": "^0.52.1",
        "@opentelemetry/otlp-exporter-base": "^0.52.1",
        "@opentelemetry/resources": "^1.25.1",
        "@opentelemetry/sdk-node": "^0.52.1",
        "@opentelemetry/sdk-trace-base": "^1.25.1",
        "@opentelemetry/sdk-trace-node": "^1.25.1",
        "@opentelemetry/semantic-conventions": "^1.25.1",
        "@trpc/client": "^11.0.0-next-beta.308",
        "@trpc/server": "^11.0.0-next-beta.308",
        "async-lock": "^1.4.0",
        "chalk": "^4.1.2",
        "ci-info": "^4.0.0",
        "circular-json": "^0.5.9",
        "cli-highlight": "^2.1.11",
        "cli-table3": "^0.6.5",
        "cpy": "^11.0.0",
        "date-fns": "^2.29.3",
        "dedent": "^1.5.3",
        "deline": "^1.0.4",
        "dependency-graph": "^0.11.0",
        "dotenv": "^16.0.3",
        "env-var": "^7.3.0",
        "eventemitter2": "^6.4.9",
        "eventemitter3": "^5.0.0",
        "fast-copy": "^3.0.1",
        "fs-extra": "^11.2.0",
        "get-port": "^7.0.0",
        "glob": "^11.0.0",
        "global-agent": "^3.0.0",
        "has-ansi": "^4.0.1",
        "hasha": "^6.0.0",
        "is-glob": "^4.0.3",
        "json-stringify-safe": "^5.0.1",
        "lodash-es": "^4.17.21",
        "log-symbols": "^6.0.0",
        "micromatch": "^4.0.5",
        "minimatch": "^5",
        "minimist": "^1.2.8",
        "moment": "^2.30.1",
        "normalize-path": "^3.0.0",
        "open": "^9.1.0",
        "p-memoize": "^7.1.1",
        "p-queue": "^8.0.1",
        "parse-git-config": "^3.0.0",
        "pluralize": "^8.0.0",
        "proper-lockfile": "^4.1.2",
        "ps-tree": "^1.2.0",
        "qs": "^6.11.2",
        "radash": "^12.1.0",
        "read": "^3.0.1",
        "safe-stable-stringify": "^2.4.3",
        "semver": "^7.5.4",
        "string-width": "^7.0.0",
        "strip-ansi": "^7.1.0",
        "superjson": "^2.2.1",
        "titleize": "^4.0.0",
        "tmp-promise": "^3.0.3",
        "toposort": "^2.0.2",
        "typescript-memoize": "^1.1.1",
        "uniqid": "^5.4.0",
        "unixify": "^1.0.0",
        "uuid": "^9.0.0",
        "winston": "^3.15.0",
        "wrap-ansi": "^9.0.0",
        "yaml": "^2.3.2",
        "zod": "3.23.8"
    },
    "devDependencies": {
        "@types/async": "^3.2.24",
        "@types/async-lock": "^1.4.0",
        "@types/bun": "^1.0.8",
        "@types/circular-json": "^0.4.0",
        "@types/dedent": "^0.7.0",
        "@types/fs-extra": "^11.0.4",
        "@types/glob": "^8.1.0",
        "@types/global-agent": "^2.1.1",
        "@types/got": "^9.6.12",
        "@types/has-ansi": "^3.0.0",
        "@types/is-glob": "^4.0.4",
        "@types/json-stringify-safe": "^5.0.0",
        "@types/lodash-es": "^4.17.12",
        "@types/micromatch": "^4.0.2",
        "@types/minimist": "^1.2.5",
        "@types/node": "^20",
        "@types/normalize-path": "^3.0.0",
        "@types/parse-git-config": "^3.0.1",
        "@types/pluralize": "0.0.29",
        "@types/proper-lockfile": "^4.1.2",
        "@types/ps-tree": "^1.1.6",
        "@types/qs": "^6.9.8",
        "@types/toposort": "^2.0.7",
        "@types/uniqid": "^5.3.4",
        "@types/unixify": "^1.0.2",
        "@types/uuid": "^9.0.1",
        "@types/wrap-ansi": "^3.0.0",
        "async": "^3.2.5",
        "eslint": "^8.56.0",
        "shx": "^0.3.4",
        "timekeeper": "^2.2.0",
        "typescript": "^5.4.5"
    },
    "scripts": {
        "build": "tsc --build .",
        "clean": "shx rm -rf build",
        "dev": "tsc --build . --watch",
        "fix-lint": "npm run lint -- --fix --quiet",
        "lint": "eslint --ignore-pattern 'projects/**' --ext .ts .",
        "check-types": "tsc --noEmit",
        "test": "bun test .unit.test.ts",
        "integ": "bun test .integ.test.ts",
        "retrieve-trpc-schema": "NODE_ENV=development NODE_TLS_REJECT_UNAUTHORIZED=0 bun run ./scripts/retrieve-trpc-schema.ts"
    }
}
