regressio 0.0.1

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "regressio",
3
+ "version": "0.0.1",
4
+ "description": "Zero-dependency TypeScript regression & statistics library: OLS, Ridge, Lasso, Elastic Net, WLS, Robust, Polynomial, and Logistic regression with full statistical outputs, diagnostics, and preprocessing",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "pkg"
24
+ ],
25
+ "scripts": {
26
+ "build:ts": "bunup src/index.ts --format esm,cjs --dts",
27
+ "build": "bun run build:ts",
28
+ "test": "bun test",
29
+ "lint": "biome check src tests",
30
+ "lint:fix": "biome check --write src tests",
31
+ "check": "bun run lint && bun run test",
32
+ "release": "semantic-release"
33
+ },
34
+ "keywords": [
35
+ "regression",
36
+ "linear-regression",
37
+ "ols",
38
+ "ridge",
39
+ "lasso",
40
+ "elastic-net",
41
+ "logistic-regression",
42
+ "polynomial-regression",
43
+ "weighted-least-squares",
44
+ "robust-regression",
45
+ "statistics",
46
+ "machine-learning",
47
+ "typescript",
48
+ "zero-dependencies",
49
+ "diagnostics",
50
+ "preprocessing"
51
+ ],
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/maxgfr/regressio.git"
56
+ },
57
+ "devDependencies": {
58
+ "@biomejs/biome": "^2.4.10",
59
+ "@semantic-release/commit-analyzer": "^13.0.1",
60
+ "@semantic-release/github": "^12.0.6",
61
+ "@semantic-release/npm": "^13.1.5",
62
+ "@semantic-release/release-notes-generator": "^14.1.0",
63
+ "@types/bun": "latest",
64
+ "bunup": "^0.16.31",
65
+ "semantic-release": "^25.0.3",
66
+ "typescript": "^5.9.3"
67
+ }
68
+ }