-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.18 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
{
"name": "slickgrid-react",
"version": "9.1.0",
"description": "Slickgrid components made available in React",
"keywords": [
"react",
"datagrid",
"datatable",
"plugin",
"slickgrid"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"homepage": "https://github.com/ghiscoding/slickgrid-universal/tree/master/frameworks/slickgrid-react",
"repository": {
"type": "git",
"url": "git+https://github.com/ghiscoding/slickgrid-universal.git",
"directory": "packages/slickgrid-react"
},
"bugs": {
"url": "https://github.com/ghiscoding/slickgrid-universal/issues"
},
"license": "MIT",
"author": "Ghislain B.",
"contributors": [
{
"name": "Ghislain B."
},
{
"name": "Devin Garner"
},
{
"name": "Javier Soques"
},
{
"name": "Dustin Garner"
},
{
"name": "Joel Peña"
}
],
"scripts": {
"are-types-wrong": "pnpx @arethetypeswrong/cli --pack .",
"react:dev": "tsc --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "npm run copy-i18n:dist && npm run copy-asset-lib",
"copy-asset-lib": "copyfiles src/assets/lib/** dist --up 2 --stat",
"copy-i18n:dist": "copyfiles src/assets/locales/**/*.* dist/i18n --up 3 --stat",
"pack": "npm pack"
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"files": [
"/dist",
"/src"
],
"dependencies": {
"@slickgrid-universal/common": "workspace:*",
"@slickgrid-universal/custom-footer-component": "workspace:*",
"@slickgrid-universal/empty-warning-component": "workspace:*",
"@slickgrid-universal/event-pub-sub": "workspace:*",
"@slickgrid-universal/pagination-component": "workspace:*",
"@slickgrid-universal/row-detail-view-plugin": "workspace:*",
"@slickgrid-universal/utils": "workspace:*",
"dequal": "catalog:",
"sortablejs": "catalog:"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@formkit/tempo": "catalog:",
"@slickgrid-universal/composite-editor-component": "workspace:*",
"@slickgrid-universal/custom-tooltip-plugin": "workspace:*",
"@slickgrid-universal/excel-export": "workspace:*",
"@slickgrid-universal/graphql": "workspace:*",
"@slickgrid-universal/odata": "workspace:*",
"@slickgrid-universal/rxjs-observable": "workspace:*",
"@slickgrid-universal/text-export": "workspace:*",
"@types/node": "catalog:",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/sortablejs": "catalog:",
"@vitejs/plugin-react": "^4.5.1",
"dompurify": "catalog:",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "catalog:",
"native-copyfiles": "catalog:",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2",
"regenerator-runtime": "^0.14.1",
"rimraf": "catalog:",
"rxjs": "catalog:",
"sass": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-tsconfig-paths": "catalog:"
}
}