-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "bannermaker-tooling",
"version": "0.0.0",
"private": true,
"description": "Dev tooling wrappers for BannerMaker (Crowdin sync etc.).",
"packageManager": "pnpm@11.1.2",
"scripts": {
"preinstall": "npx only-allow pnpm",
"crowdin:upload-sources": "dotenv -- crowdin upload sources",
"crowdin:upload-zhtw": "dotenv -- crowdin upload translations --language zh-TW --auto-approve-imported --import-eq-suggestions",
"crowdin:upload-all": "pnpm run crowdin:upload-sources && pnpm run crowdin:upload-zhtw",
"crowdin:download": "dotenv -- crowdin download translations --exclude-language zh-TW --skip-untranslated-strings",
"crowdin:status": "dotenv -- crowdin status"
},
"devDependencies": {
"@crowdin/cli": "^4.15.0",
"dotenv-cli": "^7.4.2"
}
}