UNPKG

zshy

Version:

Gold-standard build tool for TypeScript libraries

87 lines (86 loc) 1.95 kB
{ "name": "zshy", "version": "0.3.5", "type": "module", "description": "Gold-standard build tool for TypeScript libraries", "keywords": [ "typescript", "build-tool", "compiler", "dual-package", "esm", "cjs", "library", "tsc" ], "homepage": "https://github.com/colinhacks/zshy#readme", "bugs": { "url": "https://github.com/colinhacks/zshy/issues" }, "repository": { "type": "git", "url": "https://github.com/colinhacks/zshy.git" }, "license": "MIT", "author": { "name": "Colin McDonnell", "email": "colin@colinhacks.com", "url": "https://colinhacks.com" }, "funding": { "type": "github", "url": "https://github.com/sponsors/colinhacks" }, "module": "./dist/index.js", "bin": "./dist/index.cjs", "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@biomejs/biome": "^2.0.5", "@types/node": "latest", "@types/react": "^19.1.8", "@types/semver": "^7.7.0", "react": "^19.1.0", "semver": "^7.7.2", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^2.1.5", "my-pkg": "link:./test" }, "peerDependencies": { "typescript": ">5.5.0" }, "dependencies": { "arg": "^5.0.2", "globby": "^14.1.0", "table": "^6.9.0" }, "scripts": { "build": "tsx src/index.ts", "test": "vitest run", "test:basic": "tsx ./src/index.ts --project ./test/tsconfig.basic.json", "clean": "git clean -xdf . -e node_modules" }, "zshy": { "exports": { ".": "./src/index.ts" }, "bin": "./src/index.ts", "conditions": { "@zod/source": "src" } }, "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { ".": { "@zod/source": "./src/index.ts", "types": "./dist/index.d.cts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "packageManager": "pnpm@9.15.9" }