-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.77 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@simple-table/react",
"version": "4.0.9",
"main": "dist/cjs/index.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"preview": "rollup -c -w",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags"
},
"sideEffects": [
"*.css",
"**/*.css"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./styles.css": {
"types": "./styles.css.d.ts",
"default": "./dist/styles.css"
}
},
"license": "Community",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"styles.css.d.ts"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"simple-table-core": "workspace:*"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"jsdom": "^24.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.79.2",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.37.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0",
"vitest": "^2.1.9"
},
"description": "React adapter for simple-table-core — use the Simple Table data grid with full React component support for renderers.",
"repository": {
"type": "git",
"url": "https://github.com/petera2c/simple-table.git"
},
"bugs": {
"url": "https://github.com/petera2c/simple-table/issues"
},
"homepage": "https://www.simple-table.com",
"keywords": [
"simple-table",
"simple-table-react",
"react",
"react 18",
"react 19",
"datagrid",
"data-grid",
"data table",
"react-table",
"react table",
"react data grid",
"react datatable",
"react data table",
"react grid",
"react virtualized table",
"react tree table",
"react editable grid",
"react spreadsheet",
"next.js table",
"next.js data grid",
"remix table",
"react server components grid",
"ag-grid alternative",
"ag-grid react alternative",
"tanstack table alternative",
"material react table alternative",
"mui datagrid alternative",
"handsontable alternative",
"kendo react grid alternative",
"react-data-grid alternative",
"free react data grid",
"typescript data grid"
]
}