@candidstartup/react-virtual-scroll 0.13.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +15 -13
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@candidstartup/react-virtual-scroll",
3
3
  "private": false,
4
- "version": "0.13.0",
4
+ "version": "0.13.1",
5
5
  "description": "Modern React components for lists and grids that scale to trillions of rows and columns",
6
6
  "author": "Tim Wiegand <tim.wiegand@thecandidstartup.org>",
7
7
  "license": "BSD-3-Clause",
@@ -44,25 +44,27 @@
44
44
  "import": "./dist/index.js"
45
45
  }
46
46
  },
47
+ "peerDependencies": {
48
+ "react": "18 - 19"
49
+ },
50
+ "devDependencies": {
51
+ "react": "^18.2.0"
52
+ },
53
+ "dependencies": {
54
+ "@candidstartup/infinisheet-types": "0.13.1"
55
+ },
47
56
  "scripts": {
48
57
  "dev": "vite",
49
58
  "clean": "rimraf {dist,temp}",
50
- "prebuild": "npm run clean",
59
+ "prebuild": "pnpm run clean",
51
60
  "typecheck": "tsc -p tsconfig.json",
52
61
  "build-tsc": "tsc -p tsconfig.build.json",
53
62
  "build-rollup": "rollup -c ../rollup.config.mjs",
54
- "build": "npm run build-rollup",
63
+ "build": "pnpm run build-rollup",
55
64
  "lint": "eslint . --report-unused-disable-directives --max-warnings 0",
56
65
  "devapi": "api-extractor run --local",
57
66
  "prodapi": "api-extractor run",
58
- "devbuild": "npm run build && npm run lint && npm run devapi",
67
+ "devbuild": "pnpm run build && pnpm run lint && pnpm run devapi",
59
68
  "test": "vitest"
60
- },
61
- "peerDependencies": {
62
- "react": "18 - 19"
63
- },
64
- "dependencies": {
65
- "@candidstartup/infinisheet-types": "^0.13.0"
66
- },
67
- "gitHead": "ca46dae5575a3011416803e2b159457ecb59eaee"
68
- }
69
+ }
70
+ }