-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.45 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.45 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
92
93
94
95
96
{
"name": "react-agnostic-table",
"version": "1.1.1",
"description": "React Agnostic Table",
"license": "MIT",
"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"
},
"./package.json": "./package.json"
},
"scripts": {
"prepare": "husky",
"lint": "eslint . --ext .js,.ts,.tsx --max-warnings=0",
"type-check": "tsc --noEmit",
"rollup": "rollup -c --bundleConfigAsCjs",
"watch": "rollup -c --bundleConfigAsCjs --watch",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JooLuiz/react-agnostic-table.git"
},
"homepage": "https://jooluiz.github.io/react-agnostic-table/",
"bugs": {
"url": "https://github.com/JooLuiz/react-agnostic-table/issues"
},
"author": "João Luiz de Castro (https://github.com/JooLuiz)",
"keywords": [
"react",
"table",
"data-table",
"typescript",
"pagination",
"search",
"filter",
"csv-export",
"micro-frontend"
],
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^16.4.0",
"postcss": "^8.5.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"dependencies": {
"js-pretty-icons": "^0.1.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0"
]
}
}