{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@flowr/loader",
  "type": "module",
  "version": "6.0.0",
  "description": "A simple TypeScript code piece loader",
  "author": "@flowr",
  "contributors": [
    "Pauline <me@dyn.gay>"
  ],
  "license": "(LicenseRef-OQL-1.2 OR MIT OR Apache-2.0)",
  "funding": "https://ko-fi.com/pauliesnug",
  "homepage": "https://petal.dyn.gay",
  "repository": {
    "type": "git",
    "url": "https://github.com/pulseflow/petal.git",
    "directory": "packages/loader"
  },
  "bugs": "https://github.com/pulseflow/petal/issues",
  "keywords": [
    "@flowr/store",
    "petal",
    "store",
    "runtime",
    "flowr",
    "promise",
    "typescript",
    "ts",
    "wrapper",
    "try catch"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "default": "./dist/esm/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/esm/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "files": [
    "LICENSE*",
    "README.md",
    "dist/**/*.d.mts",
    "dist/**/*.d.ts",
    "dist/**/*.js",
    "dist/**/*.mjs"
  ],
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "pathe": "^2.0.3",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@flowr/types": "^6.0.0",
    "@flowr/utilities": "^6.0.0"
  },
  "scripts": {
    "build": "tsup",
    "start": "tsup --watch"
  }
}