forked from jbetancur/react-data-table-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "react-data-table-component",
"version": "8.1.0",
"description": "A fast, feature-rich React data table. Working table in 10 lines.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./css": "./dist/DataTable.css"
},
"files": [
"dist"
],
"keywords": [
"react",
"data",
"table",
"react-table",
"react-data-table-component"
],
"repository": "https://github.com/jbetancur/react-data-table-component",
"author": "jbetancur",
"license": "Apache-2.0",
"scripts": {
"prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"docs": "concurrently -n lib,docs -c blue,green \"tsup --watch\" \"npm run dev --prefix apps/docs\"",
"docs:dev": "npm run dev --prefix apps/docs",
"docs:build": "npm run build --prefix apps/docs",
"docs:preview": "npm run preview --prefix apps/docs",
"docs:install": "npm install --prefix apps/docs"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitest/coverage-v8": "^4.1.6",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"prettier": "^3.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}