-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpackage.json
108 lines (108 loc) · 3.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-data-grid",
"version": "7.0.0-beta.48",
"license": "MIT",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"react",
"data grid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adazzle/react-data-grid.git"
},
"bugs": "https://github.com/adazzle/react-data-grid/issues",
"type": "module",
"exports": {
"./lib/styles.css": "./lib/styles.css",
".": {
"types": "./lib/index.d.ts",
"default": "./lib/bundle.js"
}
},
"browser": "./lib/bundle.js",
"main": "./lib/bundle.js",
"module": "./lib/bundle.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"start": "vite serve --clearScreen false",
"preview": "vite preview",
"build:website": "vite build",
"build": "rolldown -c",
"build:types": "tsc -p tsconfig.lib.json && api-extractor run --local --verbose",
"test": "vitest run",
"test:watch": "vitest watch",
"format": "biome format --write",
"check": "biome check --error-on-warnings",
"biome:ci": "biome ci --error-on-warnings",
"eslint": "eslint --max-warnings 0 --cache --cache-location .cache/eslint --cache-strategy content",
"eslint:fix": "node --run eslint -- --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"typecheck": "tsc --build",
"prepublishOnly": "npm install && node --run build && node --run build:types",
"postpublish": "git push --follow-tags origin HEAD"
},
"dependencies": {
"clsx": "^2.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "1.9.4",
"@eslint/compat": "^1.2.6",
"@eslint/markdown": "^6.2.2",
"@faker-js/faker": "^9.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@linaria/core": "^6.0.0",
"@microsoft/api-extractor": "^7.50.0",
"@tanstack/react-router": "^1.104.1",
"@tanstack/router-plugin": "^1.104.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "3.0.3",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/eslint-plugin": "^1.1.30",
"@wyw-in-js/rollup": "^0.5.0",
"@wyw-in-js/vite": "^0.5.0",
"browserslist": "^4.24.4",
"eslint": "^9.20.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-30d8a17-20250209",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks-extra": "^1.26.2",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-testing-library": "^7.1.1",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
"playwright": "^1.50.1",
"postcss": "^8.5.2",
"prettier": "3.5.1",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"rolldown": "^1.0.0-beta.3",
"typescript": "~5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5",
"vitest-browser-react": "^0.1.1"
},
"peerDependencies": {
"react": "^19.0",
"react-dom": "^19.0"
}
}