@numpy-node/win32-x64 0.1.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.
- package/README.md +11 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @numpy-node/darwin-arm64
|
|
2
|
+
|
|
3
|
+
Native binary for numpy-node on Windows x64.
|
|
4
|
+
|
|
5
|
+
This package is installed automatically by `numpy-node` - you don't need to install it directly.
|
|
6
|
+
|
|
7
|
+
## About
|
|
8
|
+
|
|
9
|
+
This package contains the pre-built native addon for Windows on x86_64.
|
|
10
|
+
|
|
11
|
+
See the main package for documentation: [numpy-node](https://www.npmjs.com/package/numpy-node)
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@numpy-node/win32-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "numpy-node native binary for Windows x64",
|
|
5
|
+
"os": [
|
|
6
|
+
"win32"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"main": "numpy_node_native.node",
|
|
12
|
+
"files": [
|
|
13
|
+
"numpy_node_native.node",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/sebastian-software/numpy-node.git"
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
}
|
|
24
|
+
}
|