andibase 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 +24 -0
- package/index.d.ts +11 -0
- package/index.js +11 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# andibase
|
|
2
|
+
|
|
3
|
+
Official Andibase JavaScript package placeholder for the upcoming public SDK.
|
|
4
|
+
|
|
5
|
+
## Why this package exists
|
|
6
|
+
|
|
7
|
+
This package is intentionally minimal so the `andibase` npm name can be claimed
|
|
8
|
+
before the full public SDK is published.
|
|
9
|
+
|
|
10
|
+
## Current API
|
|
11
|
+
|
|
12
|
+
```js
|
|
13
|
+
import andibase, { getPackageMetadata, name, version } from "andibase";
|
|
14
|
+
|
|
15
|
+
console.log(andibase);
|
|
16
|
+
console.log(name, version);
|
|
17
|
+
console.log(getPackageMetadata());
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Publish
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm publish
|
|
24
|
+
```
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const name: "andibase";
|
|
2
|
+
export declare const version: "0.1.0";
|
|
3
|
+
|
|
4
|
+
export declare function getPackageMetadata(): {
|
|
5
|
+
name: typeof name;
|
|
6
|
+
version: typeof version;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
declare const packageMetadata: ReturnType<typeof getPackageMetadata>;
|
|
10
|
+
|
|
11
|
+
export default packageMetadata;
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "andibase",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Official Andibase JavaScript package placeholder for the upcoming public SDK.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"keywords": [
|
|
9
|
+
"andibase",
|
|
10
|
+
"ai",
|
|
11
|
+
"workspace",
|
|
12
|
+
"sdk"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./index.d.ts",
|
|
17
|
+
"import": "./index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"index.js",
|
|
22
|
+
"index.d.ts",
|
|
23
|
+
"README.md"
|
|
24
|
+
]
|
|
25
|
+
}
|