UNPKG

tsdx

Version:

Zero-config TypeScript package development

71 lines (70 loc) 1.57 kB
{ "name": "tsdx", "version": "2.0.0", "author": "Jared Palmer <jared@palmer.net>", "description": "Zero-config TypeScript package development", "license": "MIT", "homepage": "https://github.com/jaredpalmer/tsdx", "repository": { "type": "git", "url": "git+https://github.com/jaredpalmer/tsdx.git" }, "keywords": [ "typescript", "bundle", "bunchee", "vitest", "oxlint" ], "bugs": { "url": "https://github.com/jaredpalmer/tsdx/issues" }, "type": "module", "bin": { "tsdx": "./dist/index.js" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "bunchee", "dev": "bunchee --watch", "lint": "oxlint", "format": "oxfmt --write .", "format:check": "oxfmt --check .", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit", "prepare": "bun run build", "changeset": "changeset", "release": "bun run build && changeset publish" }, "files": [ "dist", "templates" ], "engines": { "node": ">=20" }, "dependencies": { "commander": "^13.0.0", "enquirer": "^2.4.1", "execa": "^9.5.2", "fs-extra": "^11.2.0", "ora": "^8.1.1", "picocolors": "^1.1.1" }, "devDependencies": { "@changesets/changelog-github": "^0.5.2", "@changesets/cli": "^2.29.8", "@types/fs-extra": "^11.0.4", "@types/node": "^22.10.2", "bunchee": "^6.4.0", "oxlint": "^0.16.0", "typescript": "^5.7.2", "vitest": "^2.1.8" } }