tsup/package.json
2020-07-21 15:17:50 +08:00

49 lines
1.2 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",
"repository": {
"url": "https://github.com/egoist/tsup.git"
},
"scripts": {
"build": "rm -rf dist && tsup src/cli.ts src/index.ts src/rollup.ts --dts",
"prepublishOnly": "npm run build",
"test": "npm run build && jest"
},
"dependencies": {
"cac": "^6.6.1",
"chalk": "^4.1.0",
"chokidar": "^3.4.1",
"esbuild": "^0.6.4",
"joycon": "^2.2.5",
"rollup": "^2.22.1",
"rollup-plugin-dts": "^1.4.8",
"sucrase": "^3.15.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/buble": "^0.19.2",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/resolve": "^1.17.1",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rollup-plugin-hashbang": "^2.2.2",
"ts-jest": "^26.1.3",
"tsup": "^3.0.0",
"typescript": "^3.9.7",
"strip-json-comments": "^3.1.1",
"buble": "^0.20.0"
}
}