@deriv-com/translations 0.0.0-development
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +135 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +9 -0
- package/dist/components/localize.d.ts +9 -0
- package/dist/components/localize.js +365 -0
- package/dist/constants-XUr5oono.js +29 -0
- package/dist/context-NlNsLXrG.js +19 -0
- package/dist/crc32-bHbojQDz.js +1593 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +12 -0
- package/dist/hooks/use-translations.d.ts +7 -0
- package/dist/hooks/use-translations.js +91 -0
- package/dist/i18nInstance-I4t--qpO.js +55 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +23 -0
- package/dist/provider/index.d.ts +2 -0
- package/dist/provider/index.js +10 -0
- package/dist/provider/translation-provider.d.ts +11 -0
- package/dist/provider/translation-provider.js +50 -0
- package/dist/utils/constants.d.ts +20 -0
- package/dist/utils/constants.js +6 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.js +15 -0
- package/dist/utils/initialize-i18n.d.ts +3 -0
- package/dist/utils/initialize-i18n.js +31 -0
- package/dist/utils/lang-utils.d.ts +3 -0
- package/dist/utils/lang-utils.js +24 -0
- package/dist/utils/localize.d.ts +8 -0
- package/dist/utils/localize.js +10 -0
- package/dist/utils/otasdk.d.ts +13 -0
- package/dist/utils/otasdk.js +24 -0
- package/dist/utils-L82GdMuf.js +61 -0
- package/package.json +503 -0
package/package.json
ADDED
|
@@ -0,0 +1,503 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deriv-com/translations",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"files": [
|
|
5
|
+
"dist"
|
|
6
|
+
],
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"private": false,
|
|
16
|
+
"version": "0.0.0-development",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "vite",
|
|
19
|
+
"build": "tsc && vite build",
|
|
20
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
|
+
"test": "vitest ./src/__tests__/*.test.tsx",
|
|
22
|
+
"prepublishOnly": "npm run test && npm run build"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react": "^17.x || ^18.x",
|
|
26
|
+
"react-dom": "^17.x || ^18.x"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@babel/core": "^7.23.7",
|
|
30
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
31
|
+
"@semantic-release/commit-analyzer": "^12.0.0",
|
|
32
|
+
"@semantic-release/github": "^10.0.2",
|
|
33
|
+
"@semantic-release/release-notes-generator": "^13.0.0",
|
|
34
|
+
"@testing-library/jest-dom": "^6.4.2",
|
|
35
|
+
"@testing-library/react": "^14.2.1",
|
|
36
|
+
"@testing-library/user-event": "^14.5.2",
|
|
37
|
+
"@types/react": "^18.2.43",
|
|
38
|
+
"@types/react-dom": "^18.2.17",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
40
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
41
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
42
|
+
"crc-32": "^1.2.2",
|
|
43
|
+
"eslint": "^8.55.0",
|
|
44
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
45
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
46
|
+
"glob": "^10.3.10",
|
|
47
|
+
"i18next": "^23.7.18",
|
|
48
|
+
"jsdom": "^24.0.0",
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"react-dom": "^18.2.0",
|
|
51
|
+
"react-i18next": "^14.0.1",
|
|
52
|
+
"semantic-release": "^23.0.6",
|
|
53
|
+
"typescript": "^5.2.2",
|
|
54
|
+
"vite": "^5.0.8",
|
|
55
|
+
"vite-plugin-dts": "^3.7.3",
|
|
56
|
+
"vitest": "^1.3.1"
|
|
57
|
+
},
|
|
58
|
+
"description": "This is a localization library that uses `i18next`, `react-i18next`, and a custom OTA SDK for translations.",
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"JSONStream": "^1.3.5",
|
|
61
|
+
"acorn": "^8.11.3",
|
|
62
|
+
"acorn-jsx": "^5.3.2",
|
|
63
|
+
"acorn-walk": "^8.3.2",
|
|
64
|
+
"agent-base": "^7.1.0",
|
|
65
|
+
"aggregate-error": "^5.0.0",
|
|
66
|
+
"ajv": "^6.12.6",
|
|
67
|
+
"ansi-escapes": "^6.2.1",
|
|
68
|
+
"ansi-regex": "^5.0.1",
|
|
69
|
+
"ansi-styles": "^3.2.1",
|
|
70
|
+
"any-promise": "^1.3.0",
|
|
71
|
+
"argparse": "^2.0.1",
|
|
72
|
+
"argv-formatter": "^1.0.0",
|
|
73
|
+
"aria-query": "^5.1.3",
|
|
74
|
+
"array-buffer-byte-length": "^1.0.1",
|
|
75
|
+
"array-ify": "^1.0.0",
|
|
76
|
+
"array-union": "^2.1.0",
|
|
77
|
+
"assertion-error": "^1.1.0",
|
|
78
|
+
"asynckit": "^0.4.0",
|
|
79
|
+
"available-typed-arrays": "^1.0.7",
|
|
80
|
+
"balanced-match": "^1.0.2",
|
|
81
|
+
"before-after-hook": "^3.0.2",
|
|
82
|
+
"bottleneck": "^2.19.5",
|
|
83
|
+
"brace-expansion": "^2.0.1",
|
|
84
|
+
"braces": "^3.0.2",
|
|
85
|
+
"browserslist": "^4.22.2",
|
|
86
|
+
"cac": "^6.7.14",
|
|
87
|
+
"call-bind": "^1.0.7",
|
|
88
|
+
"callsites": "^3.1.0",
|
|
89
|
+
"caniuse-lite": "^1.0.30001578",
|
|
90
|
+
"chai": "^4.4.1",
|
|
91
|
+
"chalk": "^2.4.2",
|
|
92
|
+
"char-regex": "^1.0.2",
|
|
93
|
+
"check-error": "^1.0.3",
|
|
94
|
+
"clean-stack": "^5.2.0",
|
|
95
|
+
"cli-highlight": "^2.1.11",
|
|
96
|
+
"cli-table3": "^0.6.4",
|
|
97
|
+
"cliui": "^8.0.1",
|
|
98
|
+
"color-convert": "^1.9.3",
|
|
99
|
+
"color-name": "^1.1.3",
|
|
100
|
+
"colors": "^1.2.5",
|
|
101
|
+
"combined-stream": "^1.0.8",
|
|
102
|
+
"commander": "^9.5.0",
|
|
103
|
+
"compare-func": "^2.0.0",
|
|
104
|
+
"computeds": "^0.0.1",
|
|
105
|
+
"concat-map": "^0.0.1",
|
|
106
|
+
"config-chain": "^1.1.13",
|
|
107
|
+
"conventional-changelog-angular": "^7.0.0",
|
|
108
|
+
"conventional-changelog-writer": "^7.0.1",
|
|
109
|
+
"conventional-commits-filter": "^4.0.0",
|
|
110
|
+
"conventional-commits-parser": "^5.0.0",
|
|
111
|
+
"convert-source-map": "^2.0.0",
|
|
112
|
+
"core-util-is": "^1.0.3",
|
|
113
|
+
"cosmiconfig": "^9.0.0",
|
|
114
|
+
"cross-spawn": "^7.0.3",
|
|
115
|
+
"crypto-random-string": "^4.0.0",
|
|
116
|
+
"css.escape": "^1.5.1",
|
|
117
|
+
"cssstyle": "^4.0.1",
|
|
118
|
+
"csstype": "^3.1.3",
|
|
119
|
+
"data-urls": "^5.0.0",
|
|
120
|
+
"de-indent": "^1.0.2",
|
|
121
|
+
"debug": "^4.3.4",
|
|
122
|
+
"decimal.js": "^10.4.3",
|
|
123
|
+
"deep-eql": "^4.1.3",
|
|
124
|
+
"deep-equal": "^2.2.3",
|
|
125
|
+
"deep-extend": "^0.6.0",
|
|
126
|
+
"deep-is": "^0.1.4",
|
|
127
|
+
"define-data-property": "^1.1.4",
|
|
128
|
+
"define-properties": "^1.2.1",
|
|
129
|
+
"delayed-stream": "^1.0.0",
|
|
130
|
+
"diff-sequences": "^29.6.3",
|
|
131
|
+
"dir-glob": "^3.0.1",
|
|
132
|
+
"doctrine": "^3.0.0",
|
|
133
|
+
"dom-accessibility-api": "^0.5.16",
|
|
134
|
+
"dot-prop": "^5.3.0",
|
|
135
|
+
"duplexer2": "^0.1.4",
|
|
136
|
+
"eastasianwidth": "^0.2.0",
|
|
137
|
+
"electron-to-chromium": "^1.4.633",
|
|
138
|
+
"emoji-regex": "^9.2.2",
|
|
139
|
+
"emojilib": "^2.4.0",
|
|
140
|
+
"entities": "^4.5.0",
|
|
141
|
+
"env-ci": "^11.0.0",
|
|
142
|
+
"env-paths": "^2.2.1",
|
|
143
|
+
"error-ex": "^1.3.2",
|
|
144
|
+
"es-define-property": "^1.0.0",
|
|
145
|
+
"es-errors": "^1.3.0",
|
|
146
|
+
"es-get-iterator": "^1.1.3",
|
|
147
|
+
"esbuild": "^0.19.11",
|
|
148
|
+
"escalade": "^3.1.1",
|
|
149
|
+
"escape-string-regexp": "^1.0.5",
|
|
150
|
+
"eslint-scope": "^7.2.2",
|
|
151
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
152
|
+
"espree": "^9.6.1",
|
|
153
|
+
"esquery": "^1.5.0",
|
|
154
|
+
"esrecurse": "^4.3.0",
|
|
155
|
+
"estraverse": "^5.3.0",
|
|
156
|
+
"estree-walker": "^3.0.3",
|
|
157
|
+
"esutils": "^2.0.3",
|
|
158
|
+
"execa": "^8.0.1",
|
|
159
|
+
"fast-deep-equal": "^3.1.3",
|
|
160
|
+
"fast-glob": "^3.3.2",
|
|
161
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
162
|
+
"fast-levenshtein": "^2.0.6",
|
|
163
|
+
"fastq": "^1.16.0",
|
|
164
|
+
"figures": "^6.1.0",
|
|
165
|
+
"file-entry-cache": "^6.0.1",
|
|
166
|
+
"fill-range": "^7.0.1",
|
|
167
|
+
"find-up": "^5.0.0",
|
|
168
|
+
"find-up-simple": "^1.0.0",
|
|
169
|
+
"find-versions": "^5.1.0",
|
|
170
|
+
"flat-cache": "^3.2.0",
|
|
171
|
+
"flatted": "^3.2.9",
|
|
172
|
+
"for-each": "^0.3.3",
|
|
173
|
+
"foreground-child": "^3.1.1",
|
|
174
|
+
"form-data": "^4.0.0",
|
|
175
|
+
"from2": "^2.3.0",
|
|
176
|
+
"fs-extra": "^7.0.1",
|
|
177
|
+
"fs.realpath": "^1.0.0",
|
|
178
|
+
"fsevents": "^2.3.3",
|
|
179
|
+
"function-bind": "^1.1.2",
|
|
180
|
+
"functions-have-names": "^1.2.3",
|
|
181
|
+
"gensync": "^1.0.0-beta.2",
|
|
182
|
+
"get-caller-file": "^2.0.5",
|
|
183
|
+
"get-func-name": "^2.0.2",
|
|
184
|
+
"get-intrinsic": "^1.2.4",
|
|
185
|
+
"get-stream": "^8.0.1",
|
|
186
|
+
"git-log-parser": "^1.2.0",
|
|
187
|
+
"glob-parent": "^6.0.2",
|
|
188
|
+
"globals": "^11.12.0",
|
|
189
|
+
"globby": "^11.1.0",
|
|
190
|
+
"gopd": "^1.0.1",
|
|
191
|
+
"graceful-fs": "^4.2.11",
|
|
192
|
+
"graphemer": "^1.4.0",
|
|
193
|
+
"handlebars": "^4.7.8",
|
|
194
|
+
"has-bigints": "^1.0.2",
|
|
195
|
+
"has-flag": "^3.0.0",
|
|
196
|
+
"has-property-descriptors": "^1.0.2",
|
|
197
|
+
"has-proto": "^1.0.3",
|
|
198
|
+
"has-symbols": "^1.0.3",
|
|
199
|
+
"has-tostringtag": "^1.0.2",
|
|
200
|
+
"hasown": "^2.0.1",
|
|
201
|
+
"he": "^1.2.0",
|
|
202
|
+
"highlight.js": "^10.7.3",
|
|
203
|
+
"hook-std": "^3.0.0",
|
|
204
|
+
"hosted-git-info": "^7.0.1",
|
|
205
|
+
"html-encoding-sniffer": "^4.0.0",
|
|
206
|
+
"html-parse-stringify": "^3.0.1",
|
|
207
|
+
"http-proxy-agent": "^7.0.2",
|
|
208
|
+
"https-proxy-agent": "^7.0.4",
|
|
209
|
+
"human-signals": "^5.0.0",
|
|
210
|
+
"iconv-lite": "^0.6.3",
|
|
211
|
+
"ignore": "^5.3.0",
|
|
212
|
+
"import-fresh": "^3.3.0",
|
|
213
|
+
"import-from-esm": "^1.3.3",
|
|
214
|
+
"import-lazy": "^4.0.0",
|
|
215
|
+
"import-meta-resolve": "^4.0.0",
|
|
216
|
+
"imurmurhash": "^0.1.4",
|
|
217
|
+
"indent-string": "^4.0.0",
|
|
218
|
+
"index-to-position": "^0.1.2",
|
|
219
|
+
"inflight": "^1.0.6",
|
|
220
|
+
"inherits": "^2.0.4",
|
|
221
|
+
"ini": "^1.3.8",
|
|
222
|
+
"internal-slot": "^1.0.7",
|
|
223
|
+
"into-stream": "^7.0.0",
|
|
224
|
+
"is-arguments": "^1.1.1",
|
|
225
|
+
"is-array-buffer": "^3.0.4",
|
|
226
|
+
"is-arrayish": "^0.2.1",
|
|
227
|
+
"is-bigint": "^1.0.4",
|
|
228
|
+
"is-boolean-object": "^1.1.2",
|
|
229
|
+
"is-callable": "^1.2.7",
|
|
230
|
+
"is-core-module": "^2.13.1",
|
|
231
|
+
"is-date-object": "^1.0.5",
|
|
232
|
+
"is-extglob": "^2.1.1",
|
|
233
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
234
|
+
"is-glob": "^4.0.3",
|
|
235
|
+
"is-map": "^2.0.2",
|
|
236
|
+
"is-number": "^7.0.0",
|
|
237
|
+
"is-number-object": "^1.0.7",
|
|
238
|
+
"is-obj": "^2.0.0",
|
|
239
|
+
"is-path-inside": "^3.0.3",
|
|
240
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
241
|
+
"is-regex": "^1.1.4",
|
|
242
|
+
"is-set": "^2.0.2",
|
|
243
|
+
"is-shared-array-buffer": "^1.0.2",
|
|
244
|
+
"is-stream": "^3.0.0",
|
|
245
|
+
"is-string": "^1.0.7",
|
|
246
|
+
"is-symbol": "^1.0.4",
|
|
247
|
+
"is-text-path": "^2.0.0",
|
|
248
|
+
"is-unicode-supported": "^2.0.0",
|
|
249
|
+
"is-weakmap": "^2.0.1",
|
|
250
|
+
"is-weakset": "^2.0.2",
|
|
251
|
+
"isarray": "^2.0.5",
|
|
252
|
+
"isexe": "^2.0.0",
|
|
253
|
+
"issue-parser": "^7.0.0",
|
|
254
|
+
"jackspeak": "^2.3.6",
|
|
255
|
+
"java-properties": "^1.0.2",
|
|
256
|
+
"jju": "^1.4.0",
|
|
257
|
+
"js-tokens": "^4.0.0",
|
|
258
|
+
"js-yaml": "^4.1.0",
|
|
259
|
+
"jsesc": "^2.5.2",
|
|
260
|
+
"json-buffer": "^3.0.1",
|
|
261
|
+
"json-parse-better-errors": "^1.0.2",
|
|
262
|
+
"json-parse-even-better-errors": "^2.3.1",
|
|
263
|
+
"json-schema-traverse": "^0.4.1",
|
|
264
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
265
|
+
"json-stringify-safe": "^5.0.1",
|
|
266
|
+
"json5": "^2.2.3",
|
|
267
|
+
"jsonc-parser": "^3.2.1",
|
|
268
|
+
"jsonfile": "^4.0.0",
|
|
269
|
+
"jsonparse": "^1.3.1",
|
|
270
|
+
"keyv": "^4.5.4",
|
|
271
|
+
"kolorist": "^1.8.0",
|
|
272
|
+
"levn": "^0.4.1",
|
|
273
|
+
"lines-and-columns": "^1.2.4",
|
|
274
|
+
"load-json-file": "^4.0.0",
|
|
275
|
+
"local-pkg": "^0.5.0",
|
|
276
|
+
"locate-path": "^6.0.0",
|
|
277
|
+
"lodash": "^4.17.21",
|
|
278
|
+
"lodash-es": "^4.17.21",
|
|
279
|
+
"lodash.capitalize": "^4.2.1",
|
|
280
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
281
|
+
"lodash.get": "^4.4.2",
|
|
282
|
+
"lodash.isequal": "^4.5.0",
|
|
283
|
+
"lodash.isplainobject": "^4.0.6",
|
|
284
|
+
"lodash.isstring": "^4.0.1",
|
|
285
|
+
"lodash.merge": "^4.6.2",
|
|
286
|
+
"lodash.uniqby": "^4.7.0",
|
|
287
|
+
"loose-envify": "^1.4.0",
|
|
288
|
+
"loupe": "^2.3.7",
|
|
289
|
+
"lru-cache": "^5.1.1",
|
|
290
|
+
"lz-string": "^1.5.0",
|
|
291
|
+
"magic-string": "^0.30.7",
|
|
292
|
+
"marked": "^12.0.1",
|
|
293
|
+
"marked-terminal": "^7.0.0",
|
|
294
|
+
"meow": "^12.1.1",
|
|
295
|
+
"merge-stream": "^2.0.0",
|
|
296
|
+
"merge2": "^1.4.1",
|
|
297
|
+
"micromatch": "^4.0.5",
|
|
298
|
+
"mime": "^4.0.1",
|
|
299
|
+
"mime-db": "^1.52.0",
|
|
300
|
+
"mime-types": "^2.1.35",
|
|
301
|
+
"mimic-fn": "^4.0.0",
|
|
302
|
+
"min-indent": "^1.0.1",
|
|
303
|
+
"minimatch": "^9.0.3",
|
|
304
|
+
"minimist": "^1.2.8",
|
|
305
|
+
"minipass": "^7.0.4",
|
|
306
|
+
"mlly": "^1.5.0",
|
|
307
|
+
"ms": "^2.1.2",
|
|
308
|
+
"muggle-string": "^0.3.1",
|
|
309
|
+
"mz": "^2.7.0",
|
|
310
|
+
"nanoid": "^3.3.7",
|
|
311
|
+
"natural-compare": "^1.4.0",
|
|
312
|
+
"neo-async": "^2.6.2",
|
|
313
|
+
"nerf-dart": "^1.0.0",
|
|
314
|
+
"node-emoji": "^2.1.3",
|
|
315
|
+
"node-releases": "^2.0.14",
|
|
316
|
+
"normalize-package-data": "^6.0.0",
|
|
317
|
+
"normalize-url": "^8.0.1",
|
|
318
|
+
"npm": "^10.5.0",
|
|
319
|
+
"npm-run-path": "^5.2.0",
|
|
320
|
+
"nwsapi": "^2.2.7",
|
|
321
|
+
"object-assign": "^4.1.1",
|
|
322
|
+
"object-inspect": "^1.13.1",
|
|
323
|
+
"object-is": "^1.1.5",
|
|
324
|
+
"object-keys": "^1.1.1",
|
|
325
|
+
"object.assign": "^4.1.5",
|
|
326
|
+
"once": "^1.4.0",
|
|
327
|
+
"onetime": "^6.0.0",
|
|
328
|
+
"optionator": "^0.9.3",
|
|
329
|
+
"p-each-series": "^3.0.0",
|
|
330
|
+
"p-filter": "^4.1.0",
|
|
331
|
+
"p-is-promise": "^3.0.0",
|
|
332
|
+
"p-limit": "^3.1.0",
|
|
333
|
+
"p-locate": "^5.0.0",
|
|
334
|
+
"p-map": "^7.0.2",
|
|
335
|
+
"p-reduce": "^3.0.0",
|
|
336
|
+
"p-try": "^1.0.0",
|
|
337
|
+
"parent-module": "^1.0.1",
|
|
338
|
+
"parse-json": "^5.2.0",
|
|
339
|
+
"parse5": "^7.1.2",
|
|
340
|
+
"parse5-htmlparser2-tree-adapter": "^6.0.1",
|
|
341
|
+
"path-browserify": "^1.0.1",
|
|
342
|
+
"path-exists": "^4.0.0",
|
|
343
|
+
"path-is-absolute": "^1.0.1",
|
|
344
|
+
"path-key": "^3.1.1",
|
|
345
|
+
"path-parse": "^1.0.7",
|
|
346
|
+
"path-scurry": "^1.10.1",
|
|
347
|
+
"path-type": "^4.0.0",
|
|
348
|
+
"pathe": "^1.1.2",
|
|
349
|
+
"pathval": "^1.1.1",
|
|
350
|
+
"picocolors": "^1.0.0",
|
|
351
|
+
"picomatch": "^2.3.1",
|
|
352
|
+
"pify": "^3.0.0",
|
|
353
|
+
"pkg-conf": "^2.1.0",
|
|
354
|
+
"pkg-types": "^1.0.3",
|
|
355
|
+
"possible-typed-array-names": "^1.0.0",
|
|
356
|
+
"postcss": "^8.4.33",
|
|
357
|
+
"prelude-ls": "^1.2.1",
|
|
358
|
+
"pretty-format": "^29.7.0",
|
|
359
|
+
"process-nextick-args": "^2.0.1",
|
|
360
|
+
"proto-list": "^1.2.4",
|
|
361
|
+
"psl": "^1.9.0",
|
|
362
|
+
"punycode": "^2.3.1",
|
|
363
|
+
"querystringify": "^2.2.0",
|
|
364
|
+
"queue-microtask": "^1.2.3",
|
|
365
|
+
"rc": "^1.2.8",
|
|
366
|
+
"react-is": "^18.2.0",
|
|
367
|
+
"react-refresh": "^0.14.0",
|
|
368
|
+
"read-pkg": "^9.0.1",
|
|
369
|
+
"read-pkg-up": "^11.0.0",
|
|
370
|
+
"readable-stream": "^2.3.8",
|
|
371
|
+
"redent": "^3.0.0",
|
|
372
|
+
"regenerator-runtime": "^0.14.1",
|
|
373
|
+
"regexp.prototype.flags": "^1.5.2",
|
|
374
|
+
"registry-auth-token": "^5.0.2",
|
|
375
|
+
"require-directory": "^2.1.1",
|
|
376
|
+
"requires-port": "^1.0.0",
|
|
377
|
+
"resolve": "^1.22.8",
|
|
378
|
+
"resolve-from": "^4.0.0",
|
|
379
|
+
"reusify": "^1.0.4",
|
|
380
|
+
"rimraf": "^3.0.2",
|
|
381
|
+
"rollup": "^4.9.5",
|
|
382
|
+
"rrweb-cssom": "^0.6.0",
|
|
383
|
+
"run-parallel": "^1.2.0",
|
|
384
|
+
"safe-buffer": "^5.1.2",
|
|
385
|
+
"safer-buffer": "^2.1.2",
|
|
386
|
+
"saxes": "^6.0.0",
|
|
387
|
+
"scheduler": "^0.23.0",
|
|
388
|
+
"semver": "^7.5.4",
|
|
389
|
+
"semver-diff": "^4.0.0",
|
|
390
|
+
"semver-regex": "^4.0.5",
|
|
391
|
+
"set-function-length": "^1.2.1",
|
|
392
|
+
"set-function-name": "^2.0.2",
|
|
393
|
+
"shebang-command": "^2.0.0",
|
|
394
|
+
"shebang-regex": "^3.0.0",
|
|
395
|
+
"side-channel": "^1.0.5",
|
|
396
|
+
"siginfo": "^2.0.0",
|
|
397
|
+
"signal-exit": "^4.1.0",
|
|
398
|
+
"signale": "^1.4.0",
|
|
399
|
+
"skin-tone": "^2.0.0",
|
|
400
|
+
"slash": "^3.0.0",
|
|
401
|
+
"source-map": "^0.6.1",
|
|
402
|
+
"source-map-js": "^1.0.2",
|
|
403
|
+
"spawn-error-forwarder": "^1.0.0",
|
|
404
|
+
"spdx-correct": "^3.2.0",
|
|
405
|
+
"spdx-exceptions": "^2.5.0",
|
|
406
|
+
"spdx-expression-parse": "^3.0.1",
|
|
407
|
+
"spdx-license-ids": "^3.0.17",
|
|
408
|
+
"split2": "^4.2.0",
|
|
409
|
+
"sprintf-js": "^1.0.3",
|
|
410
|
+
"stackback": "^0.0.2",
|
|
411
|
+
"std-env": "^3.7.0",
|
|
412
|
+
"stop-iteration-iterator": "^1.0.0",
|
|
413
|
+
"stream-combiner2": "^1.1.1",
|
|
414
|
+
"string-argv": "^0.3.2",
|
|
415
|
+
"string-width": "^5.1.2",
|
|
416
|
+
"string-width-cjs": "^4.2.3",
|
|
417
|
+
"string_decoder": "^1.1.1",
|
|
418
|
+
"strip-ansi": "^6.0.1",
|
|
419
|
+
"strip-ansi-cjs": "^6.0.1",
|
|
420
|
+
"strip-bom": "^3.0.0",
|
|
421
|
+
"strip-final-newline": "^3.0.0",
|
|
422
|
+
"strip-indent": "^3.0.0",
|
|
423
|
+
"strip-json-comments": "^3.1.1",
|
|
424
|
+
"strip-literal": "^2.0.0",
|
|
425
|
+
"supports-color": "^5.5.0",
|
|
426
|
+
"supports-hyperlinks": "^3.0.0",
|
|
427
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
428
|
+
"symbol-tree": "^3.2.4",
|
|
429
|
+
"temp-dir": "^3.0.0",
|
|
430
|
+
"tempy": "^3.1.0",
|
|
431
|
+
"text-extensions": "^2.4.0",
|
|
432
|
+
"text-table": "^0.2.0",
|
|
433
|
+
"thenify": "^3.3.1",
|
|
434
|
+
"thenify-all": "^1.6.0",
|
|
435
|
+
"through": "^2.3.8",
|
|
436
|
+
"through2": "^2.0.5",
|
|
437
|
+
"tinybench": "^2.6.0",
|
|
438
|
+
"tinypool": "^0.8.2",
|
|
439
|
+
"tinyspy": "^2.2.1",
|
|
440
|
+
"to-fast-properties": "^2.0.0",
|
|
441
|
+
"to-regex-range": "^5.0.1",
|
|
442
|
+
"tough-cookie": "^4.1.3",
|
|
443
|
+
"tr46": "^5.0.0",
|
|
444
|
+
"traverse": "^0.6.8",
|
|
445
|
+
"ts-api-utils": "^1.0.3",
|
|
446
|
+
"type-check": "^0.4.0",
|
|
447
|
+
"type-detect": "^4.0.8",
|
|
448
|
+
"type-fest": "^0.20.2",
|
|
449
|
+
"ufo": "^1.4.0",
|
|
450
|
+
"uglify-js": "^3.17.4",
|
|
451
|
+
"undici-types": "^5.26.5",
|
|
452
|
+
"unicode-emoji-modifier-base": "^1.0.0",
|
|
453
|
+
"unicorn-magic": "^0.1.0",
|
|
454
|
+
"unique-string": "^3.0.0",
|
|
455
|
+
"universal-user-agent": "^7.0.2",
|
|
456
|
+
"universalify": "^0.2.0",
|
|
457
|
+
"update-browserslist-db": "^1.0.13",
|
|
458
|
+
"uri-js": "^4.4.1",
|
|
459
|
+
"url-join": "^5.0.0",
|
|
460
|
+
"url-parse": "^1.5.10",
|
|
461
|
+
"util-deprecate": "^1.0.2",
|
|
462
|
+
"validate-npm-package-license": "^3.0.4",
|
|
463
|
+
"validator": "^13.11.0",
|
|
464
|
+
"vite-node": "^1.3.1",
|
|
465
|
+
"void-elements": "^3.1.0",
|
|
466
|
+
"vue-template-compiler": "^2.7.16",
|
|
467
|
+
"vue-tsc": "^1.8.27",
|
|
468
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
469
|
+
"webidl-conversions": "^7.0.0",
|
|
470
|
+
"whatwg-encoding": "^3.1.1",
|
|
471
|
+
"whatwg-mimetype": "^4.0.0",
|
|
472
|
+
"whatwg-url": "^14.0.0",
|
|
473
|
+
"which": "^2.0.2",
|
|
474
|
+
"which-boxed-primitive": "^1.0.2",
|
|
475
|
+
"which-collection": "^1.0.1",
|
|
476
|
+
"which-typed-array": "^1.1.14",
|
|
477
|
+
"why-is-node-running": "^2.2.2",
|
|
478
|
+
"wordwrap": "^1.0.0",
|
|
479
|
+
"wrap-ansi": "^8.1.0",
|
|
480
|
+
"wrap-ansi-cjs": "^7.0.0",
|
|
481
|
+
"wrappy": "^1.0.2",
|
|
482
|
+
"ws": "^8.16.0",
|
|
483
|
+
"xml-name-validator": "^5.0.0",
|
|
484
|
+
"xmlchars": "^2.2.0",
|
|
485
|
+
"xtend": "^4.0.2",
|
|
486
|
+
"y18n": "^5.0.8",
|
|
487
|
+
"yallist": "^3.1.1",
|
|
488
|
+
"yargs": "^17.7.2",
|
|
489
|
+
"yargs-parser": "^21.1.1",
|
|
490
|
+
"yocto-queue": "^0.1.0",
|
|
491
|
+
"z-schema": "^5.0.5"
|
|
492
|
+
},
|
|
493
|
+
"repository": {
|
|
494
|
+
"type": "git",
|
|
495
|
+
"url": "git+https://github.com/deriv-com/translations.git"
|
|
496
|
+
},
|
|
497
|
+
"author": "",
|
|
498
|
+
"license": "ISC",
|
|
499
|
+
"bugs": {
|
|
500
|
+
"url": "https://github.com/deriv-com/translations/issues"
|
|
501
|
+
},
|
|
502
|
+
"homepage": "https://github.com/deriv-com/translations#readme"
|
|
503
|
+
}
|