forked from petera2c/simple-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.07 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.07 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
108
109
110
111
112
113
114
115
116
{
"version": "1.2.1",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"publish-fast": "git add . && git commit -m \"$npm_config_message\" && git push && npm run build && npm publish",
"build": "rollup -c",
"start": "storybook dev -p 6006",
"build-storybook": "storybook build",
"preview": "rollup -c -w",
"test-storybook": "test-storybook"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.25.7",
"@rollup/plugin-node-resolve": "^15.3.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@storybook/addon-a11y": "^8.4.1",
"@storybook/addon-controls": "^8.4.1",
"@storybook/addon-docs": "^8.4.1",
"@storybook/addon-essentials": "^8.4.1",
"@storybook/addon-interactions": "^8.4.1",
"@storybook/addon-links": "^8.4.1",
"@storybook/addon-onboarding": "^8.4.1",
"@storybook/blocks": "^8.4.1",
"@storybook/preset-create-react-app": "^8.4.1",
"@storybook/react": "^8.4.1",
"@storybook/react-webpack5": "^8.4.1",
"@storybook/test": "^8.4.1",
"@storybook/test-runner": "^0.23.0",
"@types/node": "^16.18.111",
"@types/react": "^19.0.0",
"chromatic": "^13.0.1",
"cssnano": "^7.0.6",
"eslint-plugin-storybook": "^0.9.0",
"postcss-calc": "^10.1.1",
"postcss-custom-properties": "^14.0.4",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.5",
"prop-types": "^15.8.1",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"size-limit": "^11.2.0",
"storybook": "^8.4.1",
"typescript": "^4.9.5",
"webpack": "^5.95.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"size-limit": [
{
"path": "dist/index.js"
}
],
"name": "simple-table-core",
"description": "Simple Table: A lightweight, free React data grid and table component with TypeScript support, sorting, filtering, and virtualization.",
"keywords": [
"simple-table",
"simple-table-core",
"datagrid",
"data-grid",
"data grid",
"datatable",
"data-table",
"data table",
"grid",
"table",
"reacttable",
"react-table",
"react-grid",
"react-spreadsheet",
"react",
"react data grid",
"react table",
"react-component",
"spreadsheet",
"spreadsheet-table"
]
}