@fugood/node-llama-win32-arm64 1.0.0-beta.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 (3) hide show
  1. package/README.md +19 -0
  2. package/index.node +0 -0
  3. package/package.json +41 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @fugood/node-llama-win32-arm64
2
+
3
+ Native module for llama.node targeting win32-arm64.
4
+
5
+ This package contains the pre-compiled native module for the specified platform and architecture.
6
+
7
+ ## Installation
8
+
9
+ This package is typically installed automatically as a dependency of `@fugood/llama.node`.
10
+
11
+ ## Platform Support
12
+
13
+ - **OS**: win32
14
+ - **Architecture**: arm64
15
+
16
+
17
+ ## Usage
18
+
19
+ This package is not meant to be used directly. It is consumed by the main `@fugood/llama.node` package.
package/index.node ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@fugood/node-llama-win32-arm64",
3
+ "version": "1.0.0-beta.0",
4
+ "description": "Native module for An another Node binding of llama.cpp (win32-arm64)",
5
+ "main": "index.node",
6
+ "os": [
7
+ "win32"
8
+ ],
9
+ "cpu": [
10
+ "arm64"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/mybigday/llama.node.git"
15
+ },
16
+ "keywords": [
17
+ "llama",
18
+ "llm",
19
+ "ai",
20
+ "genai",
21
+ "Local LLM",
22
+ "llama.cpp",
23
+ "win32",
24
+ "arm64",
25
+ "native"
26
+ ],
27
+ "author": "Hans <hans.chen@bricks.tools>",
28
+ "license": "MIT",
29
+ "bugs": {
30
+ "url": "https://github.com/mybigday/llama.node/issues"
31
+ },
32
+ "homepage": "https://github.com/mybigday/llama.node#readme",
33
+ "publishConfig": {
34
+ "registry": "https://registry.npmjs.org",
35
+ "access": "public"
36
+ },
37
+ "files": [
38
+ "index.node",
39
+ "*.dll"
40
+ ]
41
+ }