@dialpad/i18n 1.25.3 → 1.25.7
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/dist/i18n.cjs +5993 -6456
- package/dist/i18n.cjs.map +1 -1
- package/dist/i18n.js +5990 -6468
- package/dist/i18n.js.map +1 -1
- package/package.json +25 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/i18n",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Internationalization library for Vue 3 apps using Mozilla's Fluent syntax, with locale management, translation bundle loading, and CLI tools for translation workflows",
|
|
6
6
|
"keywords": [
|
|
@@ -21,38 +21,22 @@
|
|
|
21
21
|
"docs",
|
|
22
22
|
"index.ts"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"typecheck": "rushx types:check",
|
|
26
|
-
"typecheck:ci": "rushx typecheck",
|
|
27
|
-
"lint": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
28
|
-
"lint:ci": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
29
|
-
"format": "prettier ./ --write",
|
|
30
|
-
"format:ci": "prettier ./ --check",
|
|
31
|
-
"test": "vitest run --passWithNoTests",
|
|
32
|
-
"test:ci": "echo 'no tests'",
|
|
33
|
-
"coverage": "vitest run --coverage --passWithNoTests",
|
|
34
|
-
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
35
|
-
"build": "run-p build:*",
|
|
36
|
-
"build:main": "vite build --config vite.config.ts",
|
|
37
|
-
"build:types": "rushx types:build",
|
|
38
|
-
"types:build": "tsc",
|
|
39
|
-
"types:check": "tsc --noEmit"
|
|
40
|
-
},
|
|
41
24
|
"dependencies": {
|
|
42
|
-
"@dialpad/i18n-goblin-core": "1.2.
|
|
43
|
-
"@dialpad/i18n-goblin-services": "1.
|
|
25
|
+
"@dialpad/i18n-goblin-core": "1.2.1",
|
|
26
|
+
"@dialpad/i18n-goblin-services": "1.4.0"
|
|
44
27
|
},
|
|
45
28
|
"devDependencies": {
|
|
46
|
-
"@dialpad/eslint-config": "workspace:*",
|
|
47
29
|
"@vitejs/plugin-vue": "~6.0.5",
|
|
48
30
|
"npm-run-all": "4.1.5",
|
|
49
31
|
"prettier": "~3.3.3",
|
|
50
32
|
"typescript": "~5.6.3",
|
|
51
33
|
"vite": "~8.0.1",
|
|
52
34
|
"vue": "~3.5.12",
|
|
53
|
-
"eslint": "~9.
|
|
35
|
+
"eslint": "~9.39.0",
|
|
36
|
+
"globals": "~15.11.0",
|
|
54
37
|
"vue-tsc": "~3.1.1",
|
|
55
|
-
"vitest": "~4.1.0"
|
|
38
|
+
"vitest": "~4.1.0",
|
|
39
|
+
"@dialpad/eslint-config": "2.2.0"
|
|
56
40
|
},
|
|
57
41
|
"exports": {
|
|
58
42
|
"import": "./dist/i18n.js",
|
|
@@ -76,5 +60,22 @@
|
|
|
76
60
|
"repository": {
|
|
77
61
|
"type": "git",
|
|
78
62
|
"url": "https://github.com/dialpad/goblin-client-tools"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"typecheck": "rushx types:check",
|
|
66
|
+
"typecheck:ci": "rushx typecheck",
|
|
67
|
+
"lint": "eslint --cache --fix .",
|
|
68
|
+
"lint:ci": "eslint . --output-file eslint_report.json --format json",
|
|
69
|
+
"format": "prettier ./ --write",
|
|
70
|
+
"format:ci": "prettier ./ --check",
|
|
71
|
+
"test": "vitest run --passWithNoTests",
|
|
72
|
+
"test:ci": "echo 'no tests'",
|
|
73
|
+
"coverage": "vitest run --coverage --passWithNoTests",
|
|
74
|
+
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
75
|
+
"build": "run-p build:*",
|
|
76
|
+
"build:main": "vite build --config vite.config.ts",
|
|
77
|
+
"build:types": "rushx types:build",
|
|
78
|
+
"types:build": "tsc",
|
|
79
|
+
"types:check": "tsc --noEmit"
|
|
79
80
|
}
|
|
80
|
-
}
|
|
81
|
+
}
|