Skip to content

Commit

Permalink
feat(deps): upgrade dependencies
Browse files Browse the repository at this point in the history
- support TypeScript 5.5.x
  • Loading branch information
imjuni committed Jun 24, 2024
1 parent d55a909 commit 0e47556
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 109 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ctix",
"version": "2.4.5",
"version": "2.5.0",
"description": "Automatic create index.ts file",
"scripts": {
"clean": "rimraf ./dist",
Expand Down Expand Up @@ -54,10 +54,12 @@
"exports": {
".": {
"require": {
"require": "./dist/cjs/index.cjs",
"default": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"import": {
"import": "./dist/esm/index.mjs",
"default": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
Expand Down Expand Up @@ -106,6 +108,7 @@
"rimraf": "^5.0.5",
"rollup": "^4.14.2",
"rollup-plugin-dts": "^6.1.0",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
Expand Down Expand Up @@ -138,14 +141,15 @@
"pathe": "^1.1.2",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-morph": "^22.0.0",
"ts-pattern": "^5.0.5",
"tslib": "^2.6.2",
"type-fest": "^4.15.0",
"typescript": "^5.4.5",
"yaml": "^2.4.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"cross-env NODE_ENV=production eslint --cache"
Expand Down
Loading

0 comments on commit 0e47556

Please sign in to comment.