@realtimex/node-llama-cpp-win-x64-cuda-ext 0.0.0-bootstrap.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 +5 -0
  2. package/index.js +9 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @realtimex/node-llama-cpp-win-x64-cuda-ext
2
+
3
+ Bootstrap placeholder package used to reserve this package name and configure npm Trusted Publisher for CI/CD.
4
+
5
+ This version does not contain runtime binaries.
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+
3
+ function getBinsDir() {
4
+ throw new Error("This is a bootstrap placeholder package. No runtime binaries have been published for this package version.");
5
+ }
6
+
7
+ module.exports = {
8
+ getBinsDir
9
+ };
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@realtimex/node-llama-cpp-win-x64-cuda-ext",
3
+ "version": "0.0.0-bootstrap.0",
4
+ "description": "Bootstrap placeholder used to reserve this package name and configure npm Trusted Publisher for CI/CD.",
5
+ "main": "./index.js",
6
+ "files": [
7
+ "index.js",
8
+ "README.md"
9
+ ],
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/therealtimex/node-llama-cpp.git"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ }
18
+ }