Skip to content

Commit 5169ea8

Browse files
committed
bump deps
1 parent e53bd39 commit 5169ea8

File tree

2 files changed

+434
-242
lines changed

2 files changed

+434
-242
lines changed

package.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@
2929
"npm": ">=5"
3030
},
3131
"scripts": {
32-
"clean": "rm -rf dist",
33-
"build": "rm -rf dist ||: && rollup -c --environment BUILD:production && rm -rf dist/*.es.css",
34-
"start": "rollup -c -w --environment BUILD:development",
35-
"site:build": "cd example && yarn install && yarn build"
32+
"clean": "rimraf dist",
33+
"build": "rimraf dist && rollup -c --environment BUILD:production && rm -rf dist/*.es.css",
34+
"dev": "rollup -c -w --environment BUILD:development",
35+
"start": "concurrently \"yarn dev\" \"yarn --cwd example dev\"",
36+
"site:build": "yarn --cwd example install && yarn --cwd example build"
3637
},
3738
"peerDependencies": {
3839
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
@@ -61,38 +62,40 @@
6162
"@babel/preset-env": "^7.26.9",
6263
"@babel/preset-react": "^7.26.3",
6364
"@babel/preset-typescript": "^7.26.0",
64-
"@eslint/compat": "^1.2.7",
65+
"@eslint/compat": "^1.2.8",
6566
"@eslint/eslintrc": "^3.3.1",
66-
"@eslint/js": "^9.23.0",
67+
"@eslint/js": "^9.24.0",
6768
"@rollup/plugin-babel": "^6.0.4",
6869
"@rollup/plugin-commonjs": "^28.0.3",
6970
"@rollup/plugin-node-resolve": "^16.0.1",
7071
"@rollup/plugin-terser": "^0.4.4",
7172
"@rollup/plugin-url": "^8.0.2",
7273
"@svgr/rollup": "^8.1.0",
7374
"@testing-library/react-hooks": "^8.0.1",
74-
"@types/react": "^19.0.12",
75-
"@typescript-eslint/eslint-plugin": "^8.29.0",
76-
"@typescript-eslint/parser": "^8.29.0",
75+
"@types/react": "^19",
76+
"@typescript-eslint/eslint-plugin": "^8.30.1",
77+
"@typescript-eslint/parser": "^8.30.1",
78+
"concurrently": "^9.1.2",
7779
"cross-env": "^7.0.3",
78-
"eslint": "9.23.0",
79-
"eslint-config-prettier": "^10.1.1",
80-
"eslint-plugin-prettier": "^5.2.5",
80+
"eslint": "9.24.0",
81+
"eslint-config-prettier": "^10.1.2",
82+
"eslint-plugin-prettier": "^5.2.6",
8183
"eslint-plugin-react-hooks": "^5.2.0",
8284
"eslint-plugin-react-refresh": "^0.4.19",
8385
"gh-pages": "^6.3.0",
8486
"globals": "^16.0.0",
8587
"postcss": "^8.5.3",
8688
"prettier": "^3.5.3",
8789
"react": "^19.1.0",
88-
"rollup": "^4.38.0",
90+
"rimraf": "^6.0.1",
91+
"rollup": "^4.40.0",
8992
"rollup-plugin-analyzer": "^4.0.0",
9093
"rollup-plugin-bundle-size": "^1.0.3",
9194
"rollup-plugin-peer-deps-external": "^2.2.4",
9295
"rollup-plugin-postcss": "^4.0.2",
9396
"rollup-plugin-visualizer": "^5.14.0",
94-
"typescript": "^5.8.2",
95-
"typescript-eslint": "^8.29.0"
97+
"typescript": "^5.8.3",
98+
"typescript-eslint": "^8.30.1"
9699
},
97100
"dependencies": {
98101
"@tanstack/react-virtual": "^3.13.6",

0 commit comments

Comments
 (0)