@intlayer/dictionaries-entry 4.0.0 → 4.0.3
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/README.md +48 -0
- package/package.json +8 -8
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<a href="https://www.npmjs.com/package/intlayer">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/aymericzip/intlayer/572ae9c9acafb74307b81530c1931a8e98990aef/docs/assets/logo.png" width="500" alt="intlayer" />
|
|
4
|
+
</a>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
<a href="https://www.npmjs.com/package/intlayer">
|
|
9
|
+
<img alt="npm" src="https://img.shields.io/npm/v/intlayer.svg?labelColor=49516F&color=8994BC" />
|
|
10
|
+
</a>
|
|
11
|
+
<a href="https://npmjs.org/package/intlayer">
|
|
12
|
+
<img alt="downloads" src="https://badgen.net/npm/dm/intlayer?labelColor=49516F&color=8994BC" />
|
|
13
|
+
</a>
|
|
14
|
+
<a href="https://npmjs.org/package/intlayer">
|
|
15
|
+
<img alt="types included" src="https://badgen.net/npm/types/intlayer?labelColor=49516F&color=8994BC"
|
|
16
|
+
/>
|
|
17
|
+
</a>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
# @intlayer/dictionary-entry: Retrieve Intlayer dictionaries
|
|
21
|
+
|
|
22
|
+
**Intlayer** is a suite of packages designed specifically for JavaScript developers. It is compatible with frameworks like React, React, and Express.js.
|
|
23
|
+
|
|
24
|
+
The **`@intlayer/dictionary-entry`** package is a NPM package that only returns the entry path of the intlayer dictionaries. Since the filesystem search is impossible from the browser, using bundlers like Webpack or Rollup to retrieve the entry path of the dictionaries is not possible. This package aims to be aliased.
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
Install the necessary package using your preferred package manager:
|
|
29
|
+
|
|
30
|
+
```bash packageManager="npm"
|
|
31
|
+
npm install @intlayer/dictionary-entry
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```bash packageManager="pnpm"
|
|
35
|
+
pnpm add @intlayer/dictionary-entry
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
```bash packageManager="yarn"
|
|
39
|
+
yarn add @intlayer/dictionary-entry
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Read about Intlayer
|
|
43
|
+
|
|
44
|
+
- [Intlayer Website](https://intlayer.org)
|
|
45
|
+
- [Intlayer Documentation](https://intlayer.org/docs)
|
|
46
|
+
- [Intlayer GitHub](https://github.com/aymericzip/intlayer)
|
|
47
|
+
|
|
48
|
+
- [Ask your questions to our smart documentation](https://intlayer.org/docs/chat)
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/dictionaries-entry",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Provides the entry path for Intlayer dictionaries, solving filesystem retrieval issues for bundlers like Webpack and Rollup.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"intlayer",
|
|
8
8
|
"alias",
|
|
@@ -52,7 +52,8 @@
|
|
|
52
52
|
"./package.json"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@intlayer/config": "^4.0.
|
|
55
|
+
"@intlayer/config": "^4.0.3",
|
|
56
|
+
"@intlayer/core": "4.0.3"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@types/node": "^22.10.6",
|
|
@@ -64,15 +65,14 @@
|
|
|
64
65
|
"tsc-alias": "^1.8.10",
|
|
65
66
|
"tsup": "^8.3.5",
|
|
66
67
|
"typescript": "^5.7.3",
|
|
67
|
-
"@intlayer/core": "4.0.0",
|
|
68
|
-
"@utils/eslint-config": "1.0.4",
|
|
69
68
|
"@utils/ts-config": "1.0.4",
|
|
69
|
+
"@utils/tsup-config": "1.0.4",
|
|
70
70
|
"@utils/ts-config-types": "1.0.4",
|
|
71
|
-
"@utils/
|
|
71
|
+
"@utils/eslint-config": "1.0.4"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@intlayer/config": "4.0.
|
|
75
|
-
"@intlayer/core": "^4.0.
|
|
74
|
+
"@intlayer/config": "4.0.3",
|
|
75
|
+
"@intlayer/core": "^4.0.3"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=14.18"
|