@eigenpal/docx-editor-i18n 0.0.0
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 +204 -0
- package/README.md +85 -0
- package/dist/index.d.mts +1044 -0
- package/dist/index.d.ts +1044 -0
- package/dist/index.js +5898 -0
- package/dist/index.mjs +5862 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@eigenpal/docx-editor-i18n",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Shared UI locale strings and types for the @eigenpal docx-editor adapters (React and Vue).",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup && node ../../scripts/inject-package-doc.mjs --package @eigenpal/docx-editor-i18n",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"api:extract": "node ../../scripts/api-extractor.mjs --package @eigenpal/docx-editor-i18n --local",
|
|
25
|
+
"api:check": "node ../../scripts/api-extractor.mjs --package @eigenpal/docx-editor-i18n"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"tsup": "^8.0.1",
|
|
29
|
+
"typescript": "^5.3.3"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"docx",
|
|
33
|
+
"editor",
|
|
34
|
+
"i18n",
|
|
35
|
+
"locales",
|
|
36
|
+
"translations"
|
|
37
|
+
],
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "Jedr Blaszyk",
|
|
40
|
+
"email": "jedr@eigenpal.com",
|
|
41
|
+
"url": "https://github.com/jedrazb"
|
|
42
|
+
},
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"homepage": "https://docx-editor.dev/",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/eigenpal/docx-editor.git",
|
|
48
|
+
"directory": "packages/i18n"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
}
|
|
53
|
+
}
|