-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hightable",
"version": "0.10.0",
"description": "A dynamic windowed scrolling table component for react",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
"component",
"data",
"grid",
"javascript",
"react",
"scrolling",
"table",
"windowed",
"virtualized"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hightable.git"
},
"main": "dist/HighTable.min.js",
"files": [
"src",
"dist"
],
"type": "module",
"types": "dist/HighTable.d.ts",
"scripts": {
"build": "rollup -c",
"coverage": "vitest run --coverage --coverage.include=src",
"lint": "eslint",
"prepublishOnly": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.13.1",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitest/coverage-v8": "3.0.5",
"eslint": "9.20.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"jsdom": "26.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vitest": "3.0.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}