@intlayer/core 4.0.0 → 4.0.2
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 +52 -0
- package/package.json +4 -4
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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/core: NPM Package containing Intlayer core functions
|
|
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/core`** package is a NPM package including core functions of Intlayer shared by multiple packages. It notably includes:
|
|
25
|
+
|
|
26
|
+
- Translation functions
|
|
27
|
+
- Dictionary functions
|
|
28
|
+
- Utility functions
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
Install the necessary package using your preferred package manager:
|
|
33
|
+
|
|
34
|
+
```bash packageManager="npm"
|
|
35
|
+
npm install @intlayer/core
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
```bash packageManager="pnpm"
|
|
39
|
+
pnpm add @intlayer/core
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
```bash packageManager="yarn"
|
|
43
|
+
yarn add @intlayer/core
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Read about Intlayer
|
|
47
|
+
|
|
48
|
+
- [Intlayer Website](https://intlayer.org)
|
|
49
|
+
- [Intlayer Documentation](https://intlayer.org/docs)
|
|
50
|
+
- [Intlayer GitHub](https://github.com/aymericzip/intlayer)
|
|
51
|
+
|
|
52
|
+
- [Ask your questions to our smart documentation](https://intlayer.org/docs/chat)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "IntLayer - Layer of abstraction between the business logic and the data access layer. Manage internationalization in a simple way, through TypeScript, JavaScript or JSON declaration file.",
|
|
6
6
|
"keywords": [
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@formatjs/intl-localematcher": "^0.5.10",
|
|
62
62
|
"negotiator": "^1.0.0",
|
|
63
|
-
"@intlayer/config": "4.0.
|
|
63
|
+
"@intlayer/config": "4.0.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/negotiator": "^0.6.3",
|
|
@@ -74,14 +74,14 @@
|
|
|
74
74
|
"tsc-alias": "^1.8.10",
|
|
75
75
|
"tsup": "^8.3.5",
|
|
76
76
|
"typescript": "^5.7.3",
|
|
77
|
+
"@utils/eslint-config": "1.0.4",
|
|
77
78
|
"@utils/ts-config": "1.0.4",
|
|
78
79
|
"@utils/ts-config-types": "1.0.4",
|
|
79
|
-
"@utils/eslint-config": "1.0.4",
|
|
80
80
|
"@utils/tsup-config": "1.0.4"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
83
|
"react": ">=16.0.0",
|
|
84
|
-
"@intlayer/config": "4.0.
|
|
84
|
+
"@intlayer/config": "4.0.2"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=14.18"
|