Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / i18n / package.json
blob83a65da1448ebae0e2c6a4c255ce302b89e05b07
2     "name": "@proton/i18n",
3     "description": "CLI to extract/validate translations from the code",
4     "keywords": [],
5     "license": "ISC",
6     "author": "Proton AG",
7     "main": "index.js",
8     "bin": {
9         "proton-i18n": "index.js"
10     },
11     "scripts": {
12         "build": "./scripts/build.sh",
13         "lint": "eslint lib index.js config.js --ext .js --quiet --cache",
14         "pretty": "prettier --write  $(find lib/ index.js -type f -name '*.js')",
15         "test": "./test/test-linter.sh* && ./test/test-validator.sh",
16         "test:ci": "yarn test"
17     },
18     "dependencies": {
19         "chalk": "^4.1.2",
20         "execa": "^5.1.1",
21         "gettext-parser": "^7.0.1",
22         "glob": "^10.4.5",
23         "ttag-cli": "^1.10.12"
24     },
25     "devDependencies": {
26         "cross-env": "^7.0.3",
27         "eslint": "^8.57.1",
28         "prettier": "^3.3.3"
29     },
30     "engines": {
31         "node": ">= 20.18.0"
32     }