-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 3.03 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
{
"name": "@mendix/data-widgets",
"moduleName": "Data Widgets",
"version": "3.1.1",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mendix/web-widgets.git"
},
"mxpackage": {
"name": "DataWidgets",
"type": "module",
"mpkName": "DataWidgets.mpk",
"dependencies": [
"@mendix/datagrid-date-filter-web",
"@mendix/datagrid-dropdown-filter-web",
"@mendix/datagrid-number-filter-web",
"@mendix/datagrid-text-filter-web",
"@mendix/datagrid-web",
"@mendix/dropdown-sort-web",
"@mendix/gallery-web",
"@mendix/selection-helper-web",
"@mendix/tree-node-web"
]
},
"moduleFolderNameInModeler": "datawidgets",
"marketplace": {
"minimumMXVersion": "10.24.0.73019",
"appNumber": 116540,
"appName": "Data Widgets"
},
"testProject": {
"githubUrl": "https://github.com/mendix/DataWidgets-module",
"branchName": "main"
},
"scripts": {
"build:deps": "turbo run build --filter=@mendix/data-widgets^...",
"build:include-deps": "pnpm run build:deps && pnpm run build:module",
"build:module": "ts-node --project scripts/tsconfig.json scripts/build.ts",
"create-gh-release": "rui-create-gh-release",
"create-module-mpk": "turbo release:module --filter @mendix/data-widgets",
"format": "prettier --ignore-path ./node_modules/@mendix/prettier-config-web-widgets/global-prettierignore --write .",
"lint": "tsc --project scripts/tsconfig.json",
"publish-marketplace": "rui-publish-marketplace",
"push-update": "ts-node --project scripts/tsconfig.json scripts/push-update.ts",
"release:module": "ts-node --project scripts/tsconfig.json scripts/release.ts",
"start": "ts-node --project scripts/tsconfig.json scripts/start.ts",
"update-changelog": "rui-update-changelog-module",
"verify": "rui-verify-package-format"
},
"dependencies": {
"@mendix/datagrid-date-filter-web": "workspace:*",
"@mendix/datagrid-dropdown-filter-web": "workspace:*",
"@mendix/datagrid-number-filter-web": "workspace:*",
"@mendix/datagrid-text-filter-web": "workspace:*",
"@mendix/datagrid-web": "workspace:*",
"@mendix/dropdown-sort-web": "workspace:*",
"@mendix/gallery-web": "workspace:*",
"@mendix/selection-helper-web": "workspace:*",
"@mendix/tree-node-web": "workspace:*"
},
"devDependencies": {
"@mendix/automation-utils": "workspace:*",
"@mendix/prettier-config-web-widgets": "workspace:*",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"concurrently": "^6.5.1",
"copy-and-watch": "^0.1.6",
"rollup": "*",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
}
}