@weasel-js/geom 0.7.1 → 0.8.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 (1) hide show
  1. package/package.json +9 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weasel-js/geom",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "Pure 2D geometry kernel for @weasel-js/core: affine, box, curve, polyline. Dependency-free core; polygon booleans in the ./booleans subpath.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -22,6 +22,10 @@
22
22
  "dependencies": {
23
23
  "polygon-clipping": "^0.15.7"
24
24
  },
25
+ "scripts": {
26
+ "test": "vitest run",
27
+ "build": "tsup"
28
+ },
25
29
  "author": "orochi235",
26
30
  "homepage": "https://orochi235.github.io/weasel/",
27
31
  "repository": {
@@ -33,7 +37,7 @@
33
37
  "url": "https://github.com/orochi235/weasel/issues"
34
38
  },
35
39
  "engines": {
36
- "node": ">=20"
40
+ "node": ">=22"
37
41
  },
38
42
  "files": [
39
43
  "dist",
@@ -41,10 +45,7 @@
41
45
  "LICENSE"
42
46
  ],
43
47
  "publishConfig": {
44
- "access": "public"
45
- },
46
- "scripts": {
47
- "test": "vitest run",
48
- "build": "tsup"
48
+ "access": "public",
49
+ "provenance": true
49
50
  }
50
- }
51
+ }