stoops 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 ADDED
@@ -0,0 +1,9 @@
1
+ # stoops
2
+
3
+ Real-time multi-agent chat framework. Coming soon.
4
+
5
+ ```bash
6
+ npm install stoops
7
+ ```
8
+
9
+ Follow [github.com/izzat5233/stoops](https://github.com/izzat5233/stoops) for updates.
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // src/index.ts
2
+ console.log("stoops is coming soon. Follow https://github.com/izzat5233/stoops for updates.");
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "stoops",
3
+ "version": "0.1.0",
4
+ "description": "Real-time multi-agent chat framework. Coming soon.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "files": ["dist"],
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "scripts": {
14
+ "build": "tsup"
15
+ },
16
+ "keywords": ["agents", "multi-agent", "chat", "real-time", "ai"],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/izzat5233/stoops"
20
+ },
21
+ "author": "Izzat Alsharif <work@izzatalsharif.com>",
22
+ "license": "MIT",
23
+ "devDependencies": {
24
+ "tsup": "^8.0.0",
25
+ "typescript": "^5.7.0"
26
+ }
27
+ }