UNPKG

zlye

Version:

A type-safe CLI parser with a Zod-like schema validation.

77 lines (76 loc) 1.7 kB
{ "name": "zlye", "description": "A type-safe CLI parser with a Zod-like schema validation.", "version": "0.1.5", "type": "module", "files": ["dist"], "module": "./dist/index.js", "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "scripts": { "build": "bunup", "dev": "bunup --watch", "lint": "biome check .", "lint:fix": "biome check --write .", "format": "biome format .", "format:fix": "biome format --write .", "tsc": "tsc --noEmit", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "release": "bumpp --commit --push --tag", "publish:ci": "bun publish --access public --no-git-checks", "prepare": "husky" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@types/bun": "^1.2.18", "bumpp": "^10.2.0", "bunup": "^0.9.2", "husky": "^9.1.7", "typescript": "^5.8.3" }, "repository": { "type": "git", "url": "git+https://github.com/arshad-yaseen/zlye.git" }, "peerDependencies": { "typescript": ">=4.5.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "keywords": [ "cli", "zod", "typescript", "node", "bun", "command-line", "command-line-interface" ], "homepage": "https://github.com/arshad-yaseen/zlye#readme", "bugs": { "url": "https://github.com/arshad-yaseen/zlye/issues" }, "license": "MIT", "dependencies": { "picocolors": "^1.1.1" } }