mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
102 lines
2.5 KiB
JSON
102 lines
2.5 KiB
JSON
{
|
|
"name": "tsup",
|
|
"version": "8.3.0",
|
|
"packageManager": "pnpm@9.5.0",
|
|
"description": "Bundle your TypeScript library with no config, powered by esbuild",
|
|
"license": "MIT",
|
|
"homepage": "https://tsup.egoist.dev/",
|
|
"repository": {
|
|
"url": "https://github.com/egoist/tsup.git"
|
|
},
|
|
"author": "EGOIST",
|
|
"files": [
|
|
"/assets",
|
|
"/dist",
|
|
"/schema.json"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"tsup": "dist/cli-default.js",
|
|
"tsup-node": "dist/cli-node.js"
|
|
},
|
|
"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",
|
|
"release": "bumpp"
|
|
},
|
|
"peerDependencies": {
|
|
"@microsoft/api-extractor": "^7.36.0",
|
|
"@swc/core": "^1",
|
|
"postcss": "^8.4.12",
|
|
"typescript": ">=4.5.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@microsoft/api-extractor": {
|
|
"optional": true
|
|
},
|
|
"@swc/core": {
|
|
"optional": true
|
|
},
|
|
"postcss": {
|
|
"optional": true
|
|
},
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"bundle-require": "^5.0.0",
|
|
"cac": "^6.7.14",
|
|
"chokidar": "^3.6.0",
|
|
"consola": "^3.2.3",
|
|
"debug": "^4.3.7",
|
|
"esbuild": "^0.23.1",
|
|
"execa": "^5.1.1",
|
|
"joycon": "^3.1.1",
|
|
"picocolors": "^1.1.0",
|
|
"postcss-load-config": "^6.0.1",
|
|
"resolve-from": "^5.0.0",
|
|
"rollup": "^4.21.3",
|
|
"source-map": "0.8.0-beta.0",
|
|
"sucrase": "^3.35.0",
|
|
"tinyglobby": "^0.2.6",
|
|
"tree-kill": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/api-extractor": "^7.47.9",
|
|
"@rollup/plugin-json": "6.1.0",
|
|
"@swc/core": "1.7.26",
|
|
"@types/debug": "4.1.12",
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/node": "22.5.5",
|
|
"@types/resolve": "1.20.6",
|
|
"bumpp": "^9.5.2",
|
|
"flat": "6.0.1",
|
|
"fs-extra": "11.2.0",
|
|
"postcss": "8.4.47",
|
|
"postcss-simple-vars": "7.0.1",
|
|
"prettier": "3.3.3",
|
|
"resolve": "1.22.8",
|
|
"rollup-plugin-dts": "6.1.1",
|
|
"sass": "1.77.8",
|
|
"strip-json-comments": "5.0.1",
|
|
"svelte": "3.49.0",
|
|
"svelte-preprocess": "5.0.3",
|
|
"terser": "^5.32.0",
|
|
"ts-essentials": "10.0.2",
|
|
"tsup": "8.3.0",
|
|
"typescript": "5.6.2",
|
|
"vitest": "2.1.1",
|
|
"wait-for-expect": "3.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|