Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade typescript & rollup #41

Merged
merged 12 commits into from
Oct 2, 2023
40 changes: 21 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@
},
"bin": "./dist/cli.js",
"scripts": {
"Target is 12.20 for import(), node: prefix is not used": "",
"build": "tsx src/cli.ts --minify --target node12.20",
"build": "tsx src/cli.ts --minify --target node18",
"test": "pnpm build && tsx tests/index.ts",
"lint": "eslint --cache .",
"type-check": "tsc --noEmit",
"prepack": "pnpm build && clean-pkg-json"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"typescript": "^4.1 || ^5.0"
},
Expand All @@ -44,33 +46,33 @@
}
},
"dependencies": {
"@rollup/plugin-alias": "^4.0.4",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/pluginutils": "^5.0.2",
"@rollup/pluginutils": "^5.0.4",
"esbuild": "^0.18.17",
"magic-string": "^0.30.2",
"rollup": "^2.79.1"
"magic-string": "^0.30.4",
"rollup": "^3.29.4"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.35.0",
"@types/node": "^20.4.5",
"@pvtnbr/eslint-config": "^0.37.1",
"@types/node": "^20.8.0",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"eslint": "^8.46.0",
"execa": "^7.2.0",
"eslint": "^8.50.0",
"execa": "^8.0.1",
"fs-fixture": "^1.2.0",
"get-node": "^14.2.0",
"get-tsconfig": "^4.6.2",
"get-node": "^14.2.1",
"get-tsconfig": "^4.7.2",
"kolorist": "^1.8.0",
"manten": "^1.0.0",
"rollup-plugin-dts": "5.2.0",
"tsx": "^3.12.7",
"type-fest": "^4.1.0",
"typescript": "^4.9.5"
"manten": "^1.1.0",
"rollup-plugin-dts": "6.0.2",
"tsx": "^3.13.0",
"type-fest": "^4.3.3",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config/node",
Expand Down
Loading