forked from Comcast/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.62 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.62 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
85
86
87
88
89
90
91
{
"name": "react-data-grid",
"version": "7.0.0-beta.59",
"description": "Feature-rich and customizable data grid React component",
"keywords": [
"data grid",
"react"
],
"homepage": "https://github.com/Comcast/react-data-grid#readme",
"bugs": "https://github.com/Comcast/react-data-grid/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Comcast/react-data-grid.git"
},
"files": [
"lib"
],
"type": "module",
"sideEffects": [
"**/*.css"
],
"main": "./lib/index.js",
"module": "./lib/index.js",
"browser": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"./lib/styles.css": "./lib/styles.css",
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"scripts": {
"start": "vite serve --clearScreen false",
"preview": "vite preview",
"build:website": "vite build",
"build": "rolldown -c",
"test": "vitest run --project browser --project node",
"test:watch": "vitest watch --project browser --project node",
"test:ci": "vitest run",
"test:ci:update": "vitest run --project visual --update",
"format": "oxfmt",
"format:check": "oxfmt --check",
"eslint": "eslint --max-warnings 0 --cache --cache-location .cache/eslint --cache-strategy content",
"eslint:fix": "node --run eslint -- --fix",
"typecheck": "tsc --build"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^3.0.0",
"@eslint/markdown": "^7.5.1",
"@faker-js/faker": "^10.3.0",
"@tanstack/react-router": "^1.166.7",
"@tanstack/router-plugin": "^1.166.7",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-istanbul": "^4.1.0",
"@vitest/eslint-plugin": "^1.6.12",
"clsx": "^2.1.1",
"ecij": "^0.4.1",
"eslint": "^10.0.3",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-testing-library": "^7.16.0",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"oxfmt": "0.42.0",
"playwright": "~1.58.0",
"postcss": "^8.5.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rolldown": "1.0.0-rc.5",
"rolldown-plugin-dts": "^0.22.5",
"typescript": "~6.0.1-rc",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0"
},
"peerDependencies": {
"react": "^19.2",
"react-dom": "^19.2"
},
"overrides": {
"typescript": "$typescript"
}
}