-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.96 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
{
"name": "@equinor/fusion-framework-react-ag-grid",
"version": "37.0.2",
"description": "Fusion module for using AG Grid",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./community": {
"import": "./dist/esm/community.js",
"types": "./dist/types/community.d.ts"
},
"./enterprise": {
"import": "./dist/esm/enterprise.js",
"types": "./dist/types/enterprise.d.ts"
},
"./react": {
"import": "./dist/esm/react.js",
"types": "./dist/types/react.d.ts"
},
"./themes": {
"import": "./dist/esm/themes.js",
"types": "./dist/types/themes.d.ts"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"typesVersions": {
"*": {
".": [
"dist/types/index.d.ts"
],
"community": [
"dist/types/community.d.ts"
],
"enterprise": [
"dist/types/enterprise.d.ts"
],
"react": [
"dist/types/react.d.ts"
],
"themes": [
"dist/types/themes.d.ts"
]
}
},
"scripts": {
"build": "tsc -b",
"prepack": "pnpm build"
},
"keywords": [
"ag-grid",
"table"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/fusion-framework.git",
"directory": "packages/react/ag-grid"
},
"dependencies": {
"@equinor/fusion-framework-module-ag-grid": "workspace:*",
"ag-grid-community": "~36.1.0",
"ag-grid-enterprise": "~36.1.0",
"ag-grid-react": "~36.1.0"
},
"devDependencies": {
"@equinor/fusion-framework-react-module": "workspace:^",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@equinor/fusion-framework-react-module": "workspace:^",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}
}