{ "name": "tsup", "version": "0.0.0-semantic-release", "description": "Bundle your TypeScript library with no config, powered by esbuild", "main": "dist/index.js", "bin": { "tsup": "dist/cli-default.js", "tsup-node": "dist/cli-node.js" }, "types": "dist/index.d.ts", "files": [ "/dist", "/assets", "/schema.json" ], "author": "EGOIST", "license": "MIT", "homepage": "https://tsup.egoist.dev/", "repository": { "url": "https://github.com/egoist/tsup.git" }, "scripts": { "dev": "npm run build-fast -- --watch", "build": "tsup src/cli-*.ts src/index.ts src/rollup.ts --clean --splitting", "prepublishOnly": "npm run build", "test": "npm run build && npm run test-only", "format": "prettier --write .", "test-only": "vitest run", "build-fast": "npm run build -- --no-dts" }, "dependencies": { "bundle-require": "^4.0.0", "cac": "^6.7.14", "chokidar": "^3.6.0", "debug": "^4.3.5", "esbuild": "^0.21.4", "execa": "^5.0.0", "globby": "^11.0.3", "joycon": "^3.0.1", "postcss-load-config": "^4.0.1", "resolve-from": "^5.0.0", "rollup": "^4.0.2", "source-map": "0.8.0-beta.0", "sucrase": "^3.35.0", "tree-kill": "^1.2.2" }, "devDependencies": { "@microsoft/api-extractor": "^7.38.3", "@rollup/plugin-json": "6.0.1", "@swc/core": "1.6.13", "@types/debug": "4.1.12", "@types/fs-extra": "11.0.4", "@types/node": "20.14.11", "@types/resolve": "1.20.6", "colorette": "2.0.20", "consola": "3.2.3", "flat": "6.0.1", "fs-extra": "11.2.0", "postcss": "8.4.12", "postcss-simple-vars": "6.0.3", "prettier": "3.3.3", "resolve": "1.22.8", "rollup-plugin-dts": "6.1.0", "sass": "1.62.1", "strip-json-comments": "4.0.0", "svelte": "3.46.4", "svelte-preprocess": "5.0.3", "terser": "^5.31.3", "ts-essentials": "10.0.1", "tsconfig-paths": "3.12.0", "tsup": "8.1.0", "typescript": "5.5.3", "vitest": "2.0.3", "wait-for-expect": "3.0.2" }, "peerDependencies": { "@microsoft/api-extractor": "^7.36.0", "@swc/core": "^1", "postcss": "^8.4.12", "typescript": ">=4.5.0" }, "peerDependenciesMeta": { "typescript": { "optional": true }, "postcss": { "optional": true }, "@swc/core": { "optional": true }, "@microsoft/api-extractor": { "optional": true } }, "engines": { "node": ">=18" }, "packageManager": "pnpm@9.5.0" }