forked from FG-Grid/fg-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "fg-grid",
"version": "0.9.6",
"description": "JavaScript Grid Library",
"type": "module",
"main": "./dist/fg-grid.cjs.js",
"module": "./dist/fg-grid.esm.js",
"types": "./types/fg-grid.d.ts",
"exports": {
".": {
"import": "./dist/fg-grid.esm.js",
"require": "./dist/fg-grid.cjs.js",
"types": "./types/fg-grid.d.ts"
},
"./styles/fg-grid.css": "./styles/fg-grid.css",
"./styles/fg-grid.min.css": "./styles/fg-grid.min.css"
},
"scripts": {
"build": "vite build",
"prepare": "husky install",
"test": "playwright test",
"test-server": "serve ./ -l 3200"
},
"keywords": [
"fg",
"fg-grid",
"datagrid",
"data-grid",
"data grid",
"datatable",
"data-table",
"data table",
"grid",
"table",
"react",
"table",
"react",
"react data grid",
"react table"
],
"license": "Commercial",
"author": "FancyGrid <support@fancygrid.com>",
"devDependencies": {
"@playwright/test": "^1.54.0",
"@types/node": "^24.0.12",
"clean-css": "^5.3.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.4",
"vite": "^5.4.8",
"vite-plugin-static-copy": "^1.0.6"
}
}