polyops-win32-x64-msvc 0.0.1-security → 0.0.4
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/README.md +2 -4
- package/package.json +44 -4
- package/polyops.win32-x64-msvc.node +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `polyops-win32-x64-msvc`
|
|
2
2
|
|
|
3
|
-
This
|
|
4
|
-
|
|
5
|
-
Please refer to www.npmjs.com/advisories?search=polyops-win32-x64-msvc for more information.
|
|
3
|
+
This is the **x86_64-pc-windows-msvc** binary for `polyops`
|
package/package.json
CHANGED
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polyops-win32-x64-msvc",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"os": [
|
|
5
|
+
"win32"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "polyops.win32-x64-msvc.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"polyops.win32-x64-msvc.node"
|
|
13
|
+
],
|
|
14
|
+
"description": "Fast Martinez-Rueda polygon Boolean operations (intersection, union, difference, xor) for Node.js — Rust under the hood. Drop-in replacement for martinez-polygon-clipping.",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"polygon",
|
|
17
|
+
"clipping",
|
|
18
|
+
"boolean",
|
|
19
|
+
"intersection",
|
|
20
|
+
"union",
|
|
21
|
+
"xor",
|
|
22
|
+
"geometry",
|
|
23
|
+
"martinez",
|
|
24
|
+
"geojson",
|
|
25
|
+
"napi-rs",
|
|
26
|
+
"native"
|
|
27
|
+
],
|
|
28
|
+
"author": "Samuel Opeyemi <samuel@fasteditor.com>",
|
|
29
|
+
"homepage": "https://github.com/trenchesdeveloper/PolyOps",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">= 18"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"registry": "https://registry.npmjs.org/",
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/trenchesdeveloper/PolyOps.git",
|
|
41
|
+
"directory": "crates/polyops-napi"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/trenchesdeveloper/PolyOps/issues"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
Binary file
|