@novx/i18n 0.2.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Novx Core
2
+
3
+ As part of the Novx Monorepo, Core provides basic infrastructural elements, which are
4
+ - a dependency injection solution
5
+ - an integrated aop solution
6
+ - handling of configuration values
7
+ - error handling
8
+ - tracing
9
+
10
+ ## Building
11
+
12
+ Run `nx build i18n` to build the library.
13
+
14
+ ## Running unit tests
15
+
16
+ Run `nx test i18n` to execute the unit tests via [Jest](https://jestjs.io).
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@novx/i18n",
3
+ "version": "0.2.0",
4
+ "description": "i18n library",
5
+ "homepage": "https://github.com/coolsamson7/novx",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/coolsamson7/novx"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/coolsamson7/novx/issues"
12
+ },
13
+ "license": "Apache-2.0",
14
+ "type": "module",
15
+ "main": "dist/libs/i18n/index.js",
16
+ "module": "dist/libs/i18n/index.esm.js",
17
+ "types": "dist/libs/i18n/index.d.ts",
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/libs/i18n/index.d.ts",
24
+ "import": "./dist/libs/i18n/index.esm.js",
25
+ "require": "./dist/libs/i18n/index.js",
26
+ "default": "./dist/libs/i18n/index.esm.js"
27
+ },
28
+ "./package.json": "./package.json"
29
+ },
30
+ "files": [
31
+ "*.js",
32
+ "*.esm.js",
33
+ "*.d.ts",
34
+ "*.js.map",
35
+ "README.md"
36
+ ],
37
+ "scripts": {
38
+ "build": "nx build i18n",
39
+ "test": "nx test i18n",
40
+ "lint": "nx lint i18n"
41
+ },
42
+ "dependencies": {
43
+ "@swc/helpers": "~0.5.18",
44
+ "reflect-metadata": "^0.2.2",
45
+ "rxjs": "^7.8.2"
46
+ },
47
+ "devDependencies": {}
48
+ }