{
  "name": "@katis/weave",
  "version": "0.5.0",
  "description": "Simple functional dependency injection",
  "repository": "github:katis/weave",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "files": [
    "/dist"
  ],
  "scripts": {
    "prepublishOnly": "npm run lint && npm run test:run && npm run build",
    "lint": "npx tsc",
    "build": "npx tsup",
    "test": "vitest",
    "test:run": "vitest run"
  },
  "keywords": [
    "dependency",
    "injection",
    "DI",
    "functional",
    "dependency injection",
    "weave"
  ],
  "author": "Joni Katajamäki <roofs_flour_0j@icloud.com>",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/node": "^20.11.0",
    "@vitest/coverage-v8": "^1.1.3",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^1.1.3"
  }
}
