embedflow 0.0.1
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 +22 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +15 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# embedflow
|
|
2
|
+
|
|
3
|
+
> A fast, modern JavaScript utility library.
|
|
4
|
+
|
|
5
|
+
⚠️ **This package is under active development. Full release coming soon.**
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install embedflow
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
import { hello } from "embedflow";
|
|
17
|
+
console.log(hello()); // "embedflow is coming soon 🚀"
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* embedflow - v0.0.1
|
|
3
|
+
* A fast, modern JavaScript utility library.
|
|
4
|
+
*
|
|
5
|
+
* This is a placeholder release to reserve the package name.
|
|
6
|
+
* Full implementation coming soon.
|
|
7
|
+
*/
|
|
8
|
+
export declare const VERSION = "0.0.1";
|
|
9
|
+
export declare function hello(): string;
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* embedflow - v0.0.1
|
|
4
|
+
* A fast, modern JavaScript utility library.
|
|
5
|
+
*
|
|
6
|
+
* This is a placeholder release to reserve the package name.
|
|
7
|
+
* Full implementation coming soon.
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.VERSION = void 0;
|
|
11
|
+
exports.hello = hello;
|
|
12
|
+
exports.VERSION = "0.0.1";
|
|
13
|
+
function hello() {
|
|
14
|
+
return "embedflow is coming soon 🚀";
|
|
15
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "embedflow",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A fast, modern JavaScript utility library. Embedding pipeline for AI apps",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"utility",
|
|
17
|
+
"javascript",
|
|
18
|
+
"react",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"author": "Your Name <you@email.com>",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"typescript": "^5.0.0"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": ">=18.0.0"
|
|
28
|
+
},
|
|
29
|
+
"peerDependenciesMeta": {
|
|
30
|
+
"react": {
|
|
31
|
+
"optional": true
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/yourusername/embedflow.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/yourusername/embedflow/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/yourusername/embedflow#readme"
|
|
42
|
+
}
|