{
  "name": "@dlightjs/transpiler",
  "version": "1.0.0-alpha.35",
  "description": "DLight transpiler as function",
  "author": {
    "name": "IanDx",
    "email": "iandxssxx@gmail.com"
  },
  "keywords": [
    "dlight.js"
  ],
  "license": "MIT",
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "typings": "dist/index.d.ts",
  "devDependencies": {
    "@types/babel__core": "^7.20.5",
    "typescript": "^5.3.2",
    "tsup": "^6.5.0"
  },
  "dependencies": {
    "@babel/core": "^7.20.12",
    "babel-preset-dlight": "1.0.0-alpha.35"
  },
  "tsup": {
    "entry": [
      "src/index.ts"
    ],
    "format": [
      "cjs",
      "esm"
    ],
    "clean": true,
    "dts": true,
    "minify": true
  },
  "scripts": {
    "build": "tsup --sourcemap"
  }
}