intlayer-cli 2.0.11 → 2.0.13
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 +1 -1
- package/package.json +19 -7
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
# Intlayer: Next-Level Content Management in JavaScript
|
|
21
21
|
|
|
22
|
-
**Intlayer** is an
|
|
22
|
+
**Intlayer** is an internationalization library designed specifically for JavaScript developers. It allow the declaration of your content everywhere in your code. It converts declaration of multilingual content into structured dictionaries to integrate easily in your code. Using TypeScript, **Intlayer** make your development stronger and more efficient.
|
|
23
23
|
|
|
24
24
|
## Why Choose Intlayer?
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "IntLayer is a 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": [
|
|
@@ -12,16 +12,26 @@
|
|
|
12
12
|
"json",
|
|
13
13
|
"file"
|
|
14
14
|
],
|
|
15
|
-
"homepage": "https://
|
|
15
|
+
"homepage": "https://intlayer.org",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/aypineau/intlayer/issues"
|
|
18
|
+
},
|
|
16
19
|
"repository": {
|
|
17
20
|
"type": "git",
|
|
18
21
|
"url": "git+https://github.com/aypineau/intlayer.git"
|
|
19
22
|
},
|
|
20
|
-
"license": "
|
|
23
|
+
"license": "Apache-2.0",
|
|
21
24
|
"author": {
|
|
22
25
|
"name": "Aymeric PINEAU",
|
|
23
26
|
"url": "https://github.com/aypineau"
|
|
24
27
|
},
|
|
28
|
+
"contributors": [
|
|
29
|
+
{
|
|
30
|
+
"name": "Aymeric Pineau",
|
|
31
|
+
"email": "ay.pineau@gmail.com",
|
|
32
|
+
"url": "https://github.com/aypineau"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
25
35
|
"exports": {
|
|
26
36
|
".": {
|
|
27
37
|
"types": "./dist/esm/index.d.mts",
|
|
@@ -30,6 +40,8 @@
|
|
|
30
40
|
},
|
|
31
41
|
"./package.json": "./package.json"
|
|
32
42
|
},
|
|
43
|
+
"main": "dist/cjs/index.cjs",
|
|
44
|
+
"module": "dist/esm/index.mjs",
|
|
33
45
|
"typesVersions": {
|
|
34
46
|
"*": {
|
|
35
47
|
"package.json": [
|
|
@@ -46,10 +58,10 @@
|
|
|
46
58
|
],
|
|
47
59
|
"dependencies": {
|
|
48
60
|
"webpack": "^5.92.1",
|
|
49
|
-
"@intlayer/chokidar": "^2.0.
|
|
50
|
-
"@intlayer/cli": "^2.0.
|
|
51
|
-
"@intlayer/config": "^2.0.
|
|
52
|
-
"@intlayer/core": "^2.0.
|
|
61
|
+
"@intlayer/chokidar": "^2.0.13",
|
|
62
|
+
"@intlayer/cli": "^2.0.13",
|
|
63
|
+
"@intlayer/config": "^2.0.13",
|
|
64
|
+
"@intlayer/core": "^2.0.13"
|
|
53
65
|
},
|
|
54
66
|
"devDependencies": {
|
|
55
67
|
"@changesets/changelog-github": "0.5.0",
|