-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.26 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.26 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hightable",
"version": "0.26.4",
"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"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/HighTable.js"
},
"./dataframe": {
"types": "./dist/types/dataframe.d.ts",
"import": "./dist/dataframe.js"
},
"./src/HighTable.css": "./dist/HighTable.css"
},
"files": [
"dist"
],
"scripts": {
"build:bundle": "vite build",
"build:types": "tsc -p tsconfig.build.json",
"build": "npm run build:bundle && npm run build:types",
"coverage": "vitest run --coverage --coverage.include=src --coverage.exclude=src/**/*.stories.tsx",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006 --disable-telemetry",
"test": "vitest run",
"typecheck": "tsc"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/js": "9.39.2",
"@storybook/react-vite": "10.2.15",
"@stylistic/eslint-plugin": "5.9.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.3.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-v8": "4.0.18",
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "10.2.15",
"globals": "17.4.0",
"jsdom": "28.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-scan": "0.5.3",
"storybook": "10.2.15",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"peerDependencies": {
"react": "^18.3.1 || ^19",
"react-dom": "^18.3.1 || ^19"
}
}