-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.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
{
"name": "@mendix/widget-plugin-filtering",
"version": "2.2.0",
"description": "Filtering API plugin.",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mendix/web-widgets.git"
},
"type": "module",
"files": [
"dist",
"!*.map"
],
"exports": {
"./*": "./dist/*.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write .",
"lint": "eslint src/ package.json",
"test": "jest"
},
"dependencies": {
"@floating-ui/react": "^0.26.27",
"@floating-ui/react-dom": "^2.1.2",
"@mendix/filter-commons": "workspace:*",
"@mendix/widget-plugin-dropdown-filter": "workspace:*",
"@mendix/widget-plugin-external-events": "workspace:*",
"@mendix/widget-plugin-hooks": "workspace:*",
"@mendix/widget-plugin-mobx-kit": "workspace:^",
"@mendix/widget-plugin-platform": "workspace:*",
"downshift": "^9.0.8",
"mendix": "10.24.80126",
"mobx": "6.12.3",
"mobx-react-lite": "4.0.7"
},
"peerDependencies": {
"date-fns": "^3.6.0"
},
"devDependencies": {
"@mendix/eslint-config-web-widgets": "workspace:*",
"@mendix/prettier-config-web-widgets": "workspace:*",
"@mendix/tsconfig-web-widgets": "workspace:*",
"@mendix/widget-plugin-test-utils": "workspace:*",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"date-fns": "^3.6.0",
"jest-environment-jsdom": "^29.7.0"
}
}