UNPKG

@orchard9ai/deploy-utils

Version:
65 lines 1.5 kB
{ "name": "@orchard9ai/deploy-utils", "version": "0.0.0", "description": "Deployment utilities for Orchard9 platform", "keywords": [ "orchard9", "deploy", "deployment", "health-check" ], "homepage": "https://github.com/orchardai/frontend-packages/tree/main/packages/deploy-utils", "bugs": { "url": "https://github.com/orchardai/frontend-packages/issues" }, "repository": { "type": "git", "url": "git+https://github.com/orchardai/frontend-packages.git", "directory": "packages/deploy-utils" }, "license": "MIT", "author": "Orchard9", "sideEffects": false, "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "README.md" ], "devDependencies": { "@types/node": "^22.15.21", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^3.1.4", "@orchard9ai/types": "0.1.0" }, "peerDependencies": { "react": "^18.2.0" }, "peerDependenciesMeta": { "react": { "optional": true } }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "clean": "rm -rf dist node_modules .turbo", "dev": "tsup --watch", "lint": "eslint . --max-warnings 0", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit" } }