@pawells/math-extended 1.0.5 → 1.1.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.
Files changed (41) hide show
  1. package/README.md +5 -5
  2. package/build/angles.d.ts +33 -3
  3. package/build/angles.d.ts.map +1 -1
  4. package/build/angles.js +51 -34
  5. package/build/angles.js.map +1 -1
  6. package/build/interpolation.d.ts +378 -63
  7. package/build/interpolation.d.ts.map +1 -1
  8. package/build/interpolation.js +378 -63
  9. package/build/interpolation.js.map +1 -1
  10. package/build/matrices/asserts.d.ts +12 -15
  11. package/build/matrices/asserts.d.ts.map +1 -1
  12. package/build/matrices/asserts.js +12 -15
  13. package/build/matrices/asserts.js.map +1 -1
  14. package/build/matrices/core.d.ts +11 -12
  15. package/build/matrices/core.d.ts.map +1 -1
  16. package/build/matrices/core.js +11 -12
  17. package/build/matrices/core.js.map +1 -1
  18. package/build/matrices/decompositions.d.ts +23 -24
  19. package/build/matrices/decompositions.d.ts.map +1 -1
  20. package/build/matrices/decompositions.js +85 -141
  21. package/build/matrices/decompositions.js.map +1 -1
  22. package/build/matrices/linear-algebra.d.ts +6 -1
  23. package/build/matrices/linear-algebra.d.ts.map +1 -1
  24. package/build/matrices/linear-algebra.js +54 -19
  25. package/build/matrices/linear-algebra.js.map +1 -1
  26. package/build/matrices/transformations.d.ts +9 -12
  27. package/build/matrices/transformations.d.ts.map +1 -1
  28. package/build/matrices/transformations.js +9 -12
  29. package/build/matrices/transformations.js.map +1 -1
  30. package/build/quaternions/core.d.ts +6 -2
  31. package/build/quaternions/core.d.ts.map +1 -1
  32. package/build/quaternions/core.js +17 -10
  33. package/build/quaternions/core.js.map +1 -1
  34. package/build/random.d.ts +5 -2
  35. package/build/random.d.ts.map +1 -1
  36. package/build/random.js +20 -17
  37. package/build/random.js.map +1 -1
  38. package/build/vectors/core.d.ts.map +1 -1
  39. package/build/vectors/core.js +5 -9
  40. package/build/vectors/core.js.map +1 -1
  41. package/package.json +11 -14
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pawells/math-extended",
3
3
  "displayName": "Math Extended",
4
- "version": "1.0.5",
4
+ "version": "1.1.1",
5
5
  "description": "Shared TypeScript math library — vectors, matrices, quaternions, interpolation, angles, and random utilities. ESM-only.",
6
6
  "type": "module",
7
7
  "main": "./build/index.js",
@@ -23,25 +23,26 @@
23
23
  "test": "vitest run",
24
24
  "test:ui": "vitest --ui",
25
25
  "test:coverage": "vitest --coverage",
26
+ "pipeline": "yarn lint && yarn typecheck && yarn test && yarn build",
26
27
  "prepublishOnly": "npm run build",
27
28
  "prepare": "husky"
28
29
  },
29
30
  "dependencies": {
30
- "@pawells/typescript-common": "^1.1.1"
31
+ "@pawells/typescript-common": "1.3.1"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@eslint/js": "^10.0.1",
34
- "@stylistic/eslint-plugin": "^5.9.0",
35
- "@types/node": "^25.3.0",
36
- "@typescript-eslint/eslint-plugin": "^8.0.0",
37
- "@typescript-eslint/parser": "^8.0.0",
35
+ "@stylistic/eslint-plugin": "^5.10.0",
36
+ "@types/node": "^25.3.2",
37
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
38
+ "@typescript-eslint/parser": "^8.56.1",
38
39
  "@vitest/coverage-v8": "^4.0.18",
39
40
  "@vitest/ui": "^4.0.18",
40
- "eslint": "^10.0.1",
41
+ "eslint": "^10.0.3",
41
42
  "eslint-import-resolver-typescript": "^4.4.4",
42
43
  "eslint-plugin-import": "^2.31.0",
43
44
  "eslint-plugin-unused-imports": "^4.0.0",
44
- "globals": "^17.3.0",
45
+ "globals": "^17.4.0",
45
46
  "husky": "^9.1.7",
46
47
  "typescript": "^5.3.3",
47
48
  "vitest": "^4.0.18"
@@ -68,15 +69,11 @@
68
69
  },
69
70
  "homepage": "https://github.com/PhillipAWells/math-extended#readme",
70
71
  "engines": {
71
- "node": ">=24.0.0"
72
+ "node": ">=22.0.0"
72
73
  },
73
74
  "packageManager": "yarn@4.12.0",
74
75
  "files": [
75
- "build/**/*.js",
76
- "build/**/*.d.ts",
77
- "build/**/*.js.map",
78
- "build/**/*.d.ts.map",
79
- "!build/**/*.test.*",
76
+ "build/",
80
77
  "README.md",
81
78
  "LICENSE",
82
79
  ".env.example"