-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.41 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
{
"name": "@mendix/automation-utils",
"version": "1.0.1",
"description": "Set of helpers for release processes",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"private": true,
"bin": {
"rui-create-gh-release": "bin/rui-create-gh-release.ts",
"rui-create-translation": "bin/rui-create-translation.ts",
"rui-generate-package-xml": "bin/rui-generate-package-xml.ts",
"rui-include-oss-in-artifact": "bin/rui-include-oss-in-artifact.ts",
"rui-prepare-release": "bin/rui-prepare-release.ts",
"rui-publish-marketplace": "bin/rui-publish-marketplace.ts",
"rui-update-changelog-module": "bin/rui-update-changelog-module.ts",
"rui-update-changelog-widget": "bin/rui-update-changelog-widget.ts",
"rui-verify-package-format": "bin/rui-verify-package-format.ts"
},
"types": "index.ts",
"main": "index.ts",
"files": [
"shell.ts",
"steps.ts",
"utils.ts",
"tsconfig.json"
],
"scripts": {
"changelog": "ts-node bin/rui-changelog-helper.ts",
"check-changelogs": "ts-node bin/rui-check-changelogs.ts",
"compile:parser:module": "peggy -o ./src/changelog-parser/parser/widget/widget.js ./src/changelog-parser/parser/widget/widget.pegjs",
"compile:parser:widget": "peggy -o ./src/changelog-parser/parser/module/module.js ./src/changelog-parser/parser/module/module.pegjs",
"format": "prettier --write .",
"include-oss-in-artifact": "ts-node bin/rui-include-oss-in-artifact.ts",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/",
"oss-clearance": "ts-node bin/rui-oss-clearance.ts",
"prepare": "pnpm run compile:parser:widget && pnpm run compile:parser:module && tsc",
"prepare-release": "ts-node bin/rui-prepare-release.ts",
"start": "tsc --watch"
},
"devDependencies": {
"@mendix/eslint-config-web-widgets": "workspace:*",
"@mendix/prettier-config-web-widgets": "workspace:*",
"@types/cross-zip": "^4.0.2",
"@types/node-fetch": "2.6.12",
"chalk": "^5.4.1",
"cross-zip": "^4.0.1",
"enquirer": "^2.4.1",
"execa": "^5.1.1",
"fast-xml-parser": "^4.1.3",
"glob": "^11.1.0",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
"peggy": "^1.2.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"zod": "^3.25.76"
}
}