mirror of
https://github.com/egoist/tsup.git
synced 2026-01-25 16:08:11 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "tsup",
|
|
"version": "0.0.0-semantic-release",
|
|
"main": "dist/index.js",
|
|
"bin": "dist/cli.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "EGOIST",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsup src/cli.ts src/index.ts --external typescript --bundle --dts",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "npm run build && jest"
|
|
},
|
|
"dependencies": {
|
|
"joycon": "^2.2.5",
|
|
"rollup": "^2.10.0",
|
|
"rollup-plugin-esbuild": "^1.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
"@rollup/plugin-json": "^4.0.3",
|
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
"@types/fs-extra": "^8.1.0",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/node": "^13.9.2",
|
|
"@types/resolve": "^1.17.0",
|
|
"cac": "^6.5.8",
|
|
"colorette": "^1.1.0",
|
|
"execa": "^4.0.1",
|
|
"fs-extra": "^9.0.0",
|
|
"jest": "^26.0.1",
|
|
"prettier": "^2.0.5",
|
|
"pretty-bytes": "^5.3.0",
|
|
"resolve": "^1.17.0",
|
|
"rollup-plugin-dts": "^1.4.2",
|
|
"rollup-plugin-hashbang": "^2.2.2",
|
|
"ts-jest": "^25.5.1",
|
|
"tsup": "^1.4.1",
|
|
"typescript": "^3.9.2"
|
|
}
|
|
}
|