@xylabs/decimal-precision 2.12.24 β†’ 2.12.26

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 +25 -31
  2. package/package.json +3 -6
package/README.md CHANGED
@@ -1,50 +1,49 @@
1
1
  [![logo][]](https://xylabs.com)
2
2
 
3
- # @xylabs/sdk-js
3
+ # @xylabs/decimal-precision
4
4
 
5
- [![main-build][]][main-build-link]
6
- [![beta-build][]][beta-build-link]
7
5
  [![npm-badge][]][npm-link]
8
- [![bch-badge][]][bch-link]
9
- [![codacy-badge][]][codacy-link]
10
- [![codeclimate-badge][]][codeclimate-link]
11
- [![snyk-badge][]][snyk-link]
6
+ [![npm-downloads-badge][]][npm-link]
7
+ [![jsdelivr-badge][]][jsdelivr-link]
8
+ [![npm-license-badge][]](LICENSE)
9
+
10
+ > XY Labs generalized Javascript library
12
11
 
13
12
  ## Table of Contents
14
13
 
15
14
  - [Description](#description)
16
15
  - [Install](#install)
17
- - [Scripts](#scripts)
18
16
  - [Maintainers](#maintainers)
19
17
  - [License](#license)
20
18
  - [Credits](#credits)
21
19
 
22
20
  ## Description
23
21
 
24
- SDK for base code for Typescript and Javascript Libraries.
22
+ Common Javascript code that is used throughout XYO projects that use React.
25
23
 
26
24
  ## Install
27
25
 
28
26
  Using npm:
29
27
 
30
28
  ```sh
31
- npm i --save @xylabs/sdk-js
29
+ npm i --save @xylabs/decimal-precision
32
30
  ```
33
31
 
34
32
  Using yarn:
35
33
 
36
34
  ```sh
37
- yarn add @xylabs/sdk-js
35
+ yarn add @xylabs/decimal-precision
38
36
  ```
39
37
 
40
- ## Scripts
41
-
42
- See [ts-scripts](https://github.com/xylabs/ts-scripts/blob/main/README.md)
43
- for list of shared scripts.
38
+ ## Documentation
39
+ [Developer Reference](https://xylabs.github.io/sdk-js)
44
40
 
45
41
  ## Maintainers
46
42
 
47
- - [Arie Trouw](https://github.com/arietrouw) (<https://arietrouw.com>)
43
+ - [Arie Trouw](https://github.com/arietrouw) ([arietrouw.com](https://arietrouw.com))
44
+ - [Joel Carter](https://github.com/JoelBCarter)
45
+ - [Matt Jones](https://github.com/jonesmac)
46
+ - [Jordan Trouw](https://github.com/jordantrouw)
48
47
 
49
48
  ## License
50
49
 
@@ -52,20 +51,15 @@ See the [LICENSE](LICENSE) file for license details
52
51
 
53
52
  ## Credits
54
53
 
55
- [Made with πŸ”₯ and ❄️ by XY Labs](https://xylabs.com)
54
+ [Made with πŸ”₯and ❄️ by XY Labs](https://xylabs.com)
56
55
 
57
56
  [logo]: https://cdn.xy.company/img/brand/XYPersistentCompany_Logo_Icon_Colored.svg
58
- [main-build]: https://github.com/xylabs/sdk-js/actions/workflows/build-main.yml/badge.svg
59
- [main-build-link]: https://github.com/xylabs/sdk-js/actions/workflows/build-main.yml
60
- [beta-build]: https://github.com/xylabs/sdk-js/actions/workflows/build-beta.yml/badge.svg
61
- [beta-build-link]: https://github.com/xylabs/sdk-js/actions/workflows/build-beta.yml
62
- [npm-badge]: https://img.shields.io/npm/v/@xylabs/sdk-js.svg
63
- [npm-link]: https://www.npmjs.com/package/@xylabs/sdk-js
64
- [bch-badge]: https://bettercodehub.com/edge/badge/xylabs/sdk-js?branch=main
65
- [bch-link]: https://bettercodehub.com/results/xylabs/sdk-js
66
- [codacy-badge]: https://app.codacy.com/project/badge/Grade/c8e15e14f37741c18cfb47ac7245c698
67
- [codacy-link]: https://www.codacy.com/gh/xylabs/sdk-js/dashboard?utm_source=github.com&utm_medium=referral&utm_content=xylabs/sdk-js&utm_campaign=Badge_Grade
68
- [codeclimate-badge]: https://api.codeclimate.com/v1/badges/c5eb068f806f0b047ea7/maintainability
69
- [codeclimate-link]: https://codeclimate.com/github/xylabs/sdk-js/maintainability
70
- [snyk-badge]: https://snyk.io/test/github/xylabs/sdk-js/badge.svg?targetFile=package.json
71
- [snyk-link]: https://snyk.io/test/github/xylabs/sdk-js?targetFile=package.json
57
+
58
+ [npm-badge]: https://img.shields.io/npm/v/@xylabs/decimal-precision.svg
59
+ [npm-link]: https://www.npmjs.com/package/@xylabs/decimal-precision
60
+
61
+ [npm-downloads-badge]: https://img.shields.io/npm/dw/@xylabs/decimal-precision
62
+ [npm-license-badge]: https://img.shields.io/npm/l/@xylabs/decimal-precision
63
+
64
+ [jsdelivr-badge]: https://data.jsdelivr.com/v1/package/npm/@xylabs/decimal-precision/badge
65
+ [jsdelivr-link]: https://www.jsdelivr.com/package/npm/@xylabs/decimal-precision
package/package.json CHANGED
@@ -23,9 +23,6 @@
23
23
  "default": "./dist/node/index.js"
24
24
  }
25
25
  },
26
- "./docs": {
27
- "default": "./dist/docs.json"
28
- },
29
26
  "./package.json": "./package.json"
30
27
  },
31
28
  "main": "./dist/node/index.cjs",
@@ -39,8 +36,8 @@
39
36
  "esm"
40
37
  ],
41
38
  "devDependencies": {
42
- "@xylabs/ts-scripts-yarn3": "^3.1.7",
43
- "@xylabs/tsconfig": "^3.1.7",
39
+ "@xylabs/ts-scripts-yarn3": "^3.1.11",
40
+ "@xylabs/tsconfig": "^3.1.11",
44
41
  "typescript": "^5.2.2"
45
42
  },
46
43
  "publishConfig": {
@@ -51,6 +48,6 @@
51
48
  "url": "https://github.com/xylabs/sdk-js.git"
52
49
  },
53
50
  "sideEffects": false,
54
- "version": "2.12.24",
51
+ "version": "2.12.26",
55
52
  "type": "module"
56
53
  }