@novx/i18n 0.2.2 → 0.2.4
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 +201 -0
- package/index.d.ts +1 -0
- package/index.esm.js +3465 -0
- package/index.esm.js.map +1 -0
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@novx/i18n",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "i18n library",
|
|
5
5
|
"homepage": "https://github.com/coolsamson7/novx",
|
|
6
6
|
"repository": {
|
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
"main": "./index.js",
|
|
16
16
|
"module": "./index.esm.js",
|
|
17
17
|
"types": "./index.d.ts",
|
|
18
|
-
"publishConfig": {
|
|
19
|
-
"access": "public"
|
|
20
|
-
},
|
|
21
18
|
"exports": {
|
|
22
19
|
".": {
|
|
23
20
|
"types": "./index.d.ts",
|
|
@@ -34,15 +31,19 @@
|
|
|
34
31
|
"*.js.map",
|
|
35
32
|
"README.md"
|
|
36
33
|
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "nx build i18n",
|
|
39
|
-
"test": "nx test i18n",
|
|
40
|
-
"lint": "nx lint i18n"
|
|
41
|
-
},
|
|
42
34
|
"dependencies": {
|
|
43
35
|
"@swc/helpers": "~0.5.18",
|
|
44
36
|
"reflect-metadata": "^0.2.2",
|
|
45
|
-
"rxjs": "^7.8.2"
|
|
37
|
+
"rxjs": "^7.8.2",
|
|
38
|
+
"@novx/core": "^0.3.0"
|
|
46
39
|
},
|
|
47
|
-
"devDependencies": {}
|
|
48
|
-
|
|
40
|
+
"devDependencies": {},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "nx build i18n",
|
|
46
|
+
"test": "nx test i18n",
|
|
47
|
+
"lint": "nx lint i18n"
|
|
48
|
+
}
|
|
49
|
+
}
|