{
  "name": "@fractary/core",
  "version": "0.8.1",
  "description": "Fractary Core SDK - Primitive operations for work tracking, repository management, logging, file storage, and documentation",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "typesVersions": {
    "*": {
      "config": [
        "dist/config/index.d.ts"
      ],
      "common/config": [
        "dist/common/config.d.ts"
      ],
      "common/yaml-config": [
        "dist/common/yaml-config.d.ts"
      ],
      "common/secrets": [
        "dist/common/secrets.d.ts"
      ],
      "work": [
        "dist/work/index.d.ts"
      ],
      "repo": [
        "dist/repo/index.d.ts"
      ],
      "logs": [
        "dist/logs/index.d.ts"
      ],
      "file": [
        "dist/file/index.d.ts"
      ],
      "docs": [
        "dist/docs/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "default": "./dist/config/index.js"
    },
    "./work": {
      "types": "./dist/work/index.d.ts",
      "default": "./dist/work/index.js"
    },
    "./repo": {
      "types": "./dist/repo/index.d.ts",
      "default": "./dist/repo/index.js"
    },
    "./logs": {
      "types": "./dist/logs/index.d.ts",
      "default": "./dist/logs/index.js"
    },
    "./file": {
      "types": "./dist/file/index.d.ts",
      "default": "./dist/file/index.js"
    },
    "./docs": {
      "types": "./dist/docs/index.d.ts",
      "default": "./dist/docs/index.js"
    },
    "./common/yaml-config": {
      "types": "./dist/common/yaml-config.d.ts",
      "default": "./dist/common/yaml-config.js"
    },
    "./common/config": {
      "types": "./dist/common/config.d.ts",
      "default": "./dist/common/config.js"
    },
    "./common/secrets": {
      "types": "./dist/common/secrets.d.ts",
      "default": "./dist/common/secrets.js"
    }
  },
  "files": [
    "dist",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "tsc --watch",
    "prebuild": "node scripts/copy-templates.js",
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist templates",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "fractary",
    "core",
    "primitives",
    "sdk",
    "work",
    "repository",
    "git",
    "github",
    "gitlab",
    "bitbucket",
    "jira",
    "linear",
    "logging",
    "file-storage"
  ],
  "author": "Fractary Team",
  "license": "MIT",
  "dependencies": {
    "@fractary/forge": "^1.1.1",
    "dotenv": "^16.4.5",
    "js-yaml": "^4.1.1",
    "jsonwebtoken": "^9.0.2",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@aws-sdk/client-s3": "^3.971.0",
    "@aws-sdk/credential-providers": "^3.971.0",
    "@aws-sdk/s3-request-presigner": "^3.971.0",
    "@google-cloud/storage": "^7.18.0",
    "@types/aws-sdk": "^0.0.42",
    "@types/jest": "^30.0.0",
    "@types/js-yaml": "^4.0.9",
    "@types/jsonwebtoken": "^9.0.5",
    "@types/node": "^20.19.26",
    "@typescript-eslint/eslint-plugin": "^6.19.0",
    "@typescript-eslint/parser": "^6.19.0",
    "eslint": "^8.56.0",
    "googleapis": "^170.1.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3",
    "vitest": "^1.0.4"
  },
  "peerDependencies": {
    "@aws-sdk/client-s3": "^3.0.0",
    "@aws-sdk/credential-providers": "^3.0.0",
    "@aws-sdk/s3-request-presigner": "^3.0.0",
    "@google-cloud/storage": "^7.0.0",
    "googleapis": "^140.0.0"
  },
  "peerDependenciesMeta": {
    "@aws-sdk/client-s3": {
      "optional": true
    },
    "@aws-sdk/credential-providers": {
      "optional": true
    },
    "@aws-sdk/s3-request-presigner": {
      "optional": true
    },
    "@google-cloud/storage": {
      "optional": true
    },
    "googleapis": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fractary/core.git"
  },
  "bugs": {
    "url": "https://github.com/fractary/core/issues"
  },
  "homepage": "https://github.com/fractary/core#readme",
  "publishConfig": {
    "access": "public"
  }
}
