-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.81 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
{
"dependencies": {
"mint": "^4.2.459",
"sharp": "^0.33.3"
},
"scripts": {
"dev": "NODE_OPTIONS='--max-old-space-size=8192' npx mint dev --disable-openapi",
"dev:full": "NODE_OPTIONS='--max-old-space-size=8192' npx mint dev",
"translate": "bun .github/scripts/i18n/translate-i18n.ts",
"translate:dry-run": "bun .github/scripts/i18n/translate-i18n.ts --dry-run",
"translate:force": "bun .github/scripts/i18n/translate-i18n.ts --force",
"translate:snippets": "bun .github/scripts/i18n/translate-i18n.ts --snippets",
"translate:snippets:dry-run": "bun .github/scripts/i18n/translate-i18n.ts --snippets --dry-run",
"translate:check-truncation": "bun .github/scripts/i18n/check-translation-truncation.ts",
"translate:repair-truncated": "bun .github/scripts/i18n/translate-i18n.ts --repair-truncated",
"translate:sync-docs-json": "bun .github/scripts/i18n/translate-i18n.ts --sync-docs-json",
"glossary:sync": "bun .github/scripts/i18n/sync-glossary.mjs",
"glossary:sync:dry-run": "bun .github/scripts/i18n/sync-glossary.mjs --dry-run",
"translate:review": "bun .github/scripts/i18n/review-i18n.ts",
"cms:prepare": "bun .github/scripts/cms/prepare-cms-changelog.ts",
"cms:prepare:en": "bun .github/scripts/cms/prepare-cms-changelog.ts --en-only",
"cms:prepare:locales": "bun .github/scripts/cms/prepare-cms-changelog.ts --translate-only",
"cms:delete-drafts": "bun .github/scripts/cms/delete-cms-drafts.ts",
"cms:preview": "bun .github/scripts/cms/sync-to-strapi.ts --preview",
"cms:sync": "bun .github/scripts/cms/sync-to-strapi.ts",
"cms:publish": "bun .github/scripts/cms/publish-cms-drafts.ts",
"cms:set-attention": "bun .github/scripts/cms/set-cms-attention.ts"
},
"devDependencies": {
"@executeautomation/playwright-mcp-server": "^1.0.5"
}
}