UNPKG

dagger-env

Version:

A type-safe, reusable environment configuration abstraction for Dagger modules.

74 lines 1.75 kB
{ "name": "dagger-env", "version": "1.2.0", "private": false, "description": "A type-safe, reusable environment configuration abstraction for Dagger modules.", "keywords": [ "dagger", "env" ], "homepage": "https://github.com/jahands/workers-packages/tree/main/npm-pkgs/dagger-env", "bugs": "https://github.com/jahands/workers-packages/issues", "repository": { "type": "git", "url": "https://github.com/jahands/workers-packages.git", "directory": "npm-pkgs/dagger-env" }, "license": "MIT", "author": { "name": "Jacob Hands", "url": "https://github.com/jahands" }, "sideEffects": false, "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "./op": { "import": { "types": "./dist/op.d.ts", "default": "./dist/op.js" } }, "./run": { "import": { "types": "./dist/run-dagger-cmd.d.ts", "default": "./dist/run-dagger-cmd.js" } } }, "main": "./dist/index.js", "module": "./dist/index.js", "files": [ "dist", "src" ], "dependencies": { "zx": "8.8.4" }, "devDependencies": { "@dagger.io/dagger": "0.20.6", "typescript": "5.8.2", "vitest": "3.2.4", "zod": "4.1.12", "@repo/tools": "0.12.3", "@repo/typescript-config": "0.3.10" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.12" }, "publishConfig": { "access": "public" }, "scripts": { "build": "runx build tsc ./src/index.ts ./src/op.ts ./src/run-dagger-cmd.ts", "check:exports": "runx check --exports", "check:lint": "run-eslint", "check:types": "run-tsc", "test": "run-vitest" } }