pragmastat 4.0.1 → 4.0.3

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 +6 -35
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,21 +1,15 @@
1
- # Pragmastat
2
-
3
- This is a TypeScript implementation of 'Pragmastat: Pragmatic Statistical Toolkit', which presents a toolkit of statistical procedures that provide reliable results across diverse real-world distributions, with ready-to-use implementations and detailed explanations.
4
-
5
- - PDF manual for this version: [pragmastat-v4.0.1.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v4.0.1/pragmastat-v4.0.1.pdf)
6
- - Markdown manual for this version: [pragmastat-v4.0.1.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v4.0.1/pragmastat-v4.0.1.md)
7
- - Source code for this version: [pragmastat/ts/v4.0.1](https://github.com/AndreyAkinshin/pragmastat/tree/v4.0.1/ts)
8
- - Latest online manual: https://pragmastat.dev
9
- - Manual DOI: [10.5281/zenodo.17236778](https://doi.org/10.5281/zenodo.17236778)
10
-
11
- ## Installation
1
+ # TypeScript
12
2
 
13
3
  Install from npm:
14
4
 
15
5
  ```bash
16
- npm i pragmastat@4.0.1
6
+ npm i pragmastat@4.0.3
17
7
  ```
18
8
 
9
+ Source code: https://github.com/AndreyAkinshin/pragmastat/tree/v4.0.3/ts
10
+
11
+ Pragmastat on npm: https://www.npmjs.com/package/pragmastat
12
+
19
13
  ## Demo
20
14
 
21
15
  ```typescript
@@ -84,26 +78,3 @@ function main() {
84
78
 
85
79
  main();
86
80
  ```
87
-
88
- ## The MIT License
89
-
90
- Copyright (c) 2025 Andrey Akinshin
91
-
92
- Permission is hereby granted, free of charge, to any person obtaining
93
- a copy of this software and associated documentation files (the
94
- "Software"), to deal in the Software without restriction, including
95
- without limitation the rights to use, copy, modify, merge, publish,
96
- distribute, sublicense, and/or sell copies of the Software, and to
97
- permit persons to whom the Software is furnished to do so, subject to
98
- the following conditions:
99
-
100
- The above copyright notice and this permission notice shall be
101
- included in all copies or substantial portions of the Software.
102
-
103
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
104
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
105
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
106
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
107
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
108
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
109
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pragmastat",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "Pragmastat: Pragmatic Statistical Toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",