@paperclipai/adapter-kimi-local 0.0.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 +8 -0
- package/index.js +1 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @paperclipai/adapter-kimi-local
|
|
2
|
+
|
|
3
|
+
Version 0.0.0 is a **placeholder publish**. It reserves this package name so
|
|
4
|
+
Paperclip's release-bootstrap CI gate can pass before the package's first real
|
|
5
|
+
release ships from CI. It intentionally contains no functionality.
|
|
6
|
+
|
|
7
|
+
Real versions are published by the release workflow of
|
|
8
|
+
[paperclipai/paperclip](https://github.com/paperclipai/paperclip).
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
throw new Error("@paperclipai/adapter-kimi-local@0.0.0 is a placeholder that reserves the package name for Paperclip's release pipeline. It contains no functionality; the first real release supersedes it. See https://github.com/paperclipai/paperclip");
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@paperclipai/adapter-kimi-local",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder publish reserving this name for Paperclip's release pipeline. Do not install this version.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js"
|
|
9
|
+
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/paperclipai/paperclip.git"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/paperclipai/paperclip",
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
}
|
|
18
|
+
}
|