{
  "name": "@tsdl/core",
  "description": "TSDL core utils and types",
  "version": "0.3.9",
  "gitHead": "73283acb1dab14ff8d574a11974d754fc7fd1863",
  "author": {
    "email": "jonathan@asplund.net",
    "name": "Jonathan Asplund",
    "url": "https://asplund.dev"
  },
  "keywords": [
    "tsdl",
    "rpc",
    "data layer",
    "api",
    "framework"
  ],
  "types": "./dist/cjs/index.d.ts",
  "license": "MIT",
  "scripts": {
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "build:esm": "tsc --module es6 --outDir dist/esm",
    "build": "npm run build:cjs & npm run build:esm",
    "watch": "tsc --watch --module commonjs --outDir dist/cjs",
    "types": "tsc --noEmit"
  },
  "files": [
    "dist",
    "index.ts",
    "src",
    "lib",
    "LICENSE.md"
  ],
  "main": "dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "types": "./dist/cjs/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./*": {
      "import": "./dist/esm/*.js",
      "require": "./dist/cjs/*.js"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/asplunds/tsdl.git",
    "directory": "packages/core"
  },
  "devDependencies": {
    "typescript": "^5.1.6"
  }
}
