-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "hightable",
"version": "0.9.2",
"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"
},
"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.1.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.1",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.18.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"jsdom": "26.0.0",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"vitest": "2.1.8"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}