{
  "name": "trama-types",
  "version": "0.2.2",
  "description": "Canonical TypeScript types for the Trama ecosystem — TramaProduct, TramaCart, TramaCollection, MappingConfig, etc. Used by the SDK, the connectors, and any community-built integrations.",
  "license": "MIT",
  "homepage": "https://gotrama.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gotrama-hq/trama-types.git"
  },
  "bugs": {
    "url": "https://github.com/gotrama-hq/trama-types/issues"
  },
  "keywords": [
    "trama",
    "types",
    "typescript",
    "ecommerce",
    "schema",
    "canonical",
    "wix",
    "shopify",
    "webflow"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "sideEffects": false,
  "devDependencies": {
    "tsup": "^8.0.0",
    "typescript": "^5.4.5"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts",
    "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}