mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
30 lines
755 B
JSON
30 lines
755 B
JSON
{
|
|
"name": "tsup",
|
|
"version": "0.0.0-semantic-release",
|
|
"main": "dist/index.js",
|
|
"bin": "dist/cli.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "EGOIST",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "esbuild src/cli.ts --platform=node --outdir=dist --format=cjs --target=es2018 --external:rollup --external:rollup-plugin-esbuild --bundle",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"rollup": "^2.8.2",
|
|
"rollup-plugin-esbuild": "^1.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
"@types/node": "^13.9.2",
|
|
"@types/resolve": "^1.17.0",
|
|
"cac": "^6.5.8",
|
|
"colorette": "^1.1.0",
|
|
"resolve": "^1.17.0",
|
|
"rollup-plugin-hashbang": "^2.2.2",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
}
|