arcy.js 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 +7 -0
- package/index.js +5 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# arcy.js
|
|
2
|
+
|
|
3
|
+
The universal JavaScript utility for [ARCY](https://arcyai.com) — embed an AI agent that talks to, learns from, and acts on behalf of your users, in any web app regardless of framework.
|
|
4
|
+
|
|
5
|
+
**This package is not yet released.** This name is reserved ahead of launch. Watch [arcyai.com](https://arcyai.com) for availability.
|
|
6
|
+
|
|
7
|
+
In the meantime, see [`@arcyai/sdk`](https://www.npmjs.com/package/@arcyai/sdk) for the current framework-based SDK.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "arcy.js",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "ARCY — the universal JavaScript utility for embedding an AI agent that talks to, learns from, and acts on behalf of your users. Coming soon.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"private": false,
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/huseyinium/arcy-ai-frontend-monorepo",
|
|
15
|
+
"directory": "packages/arcy.js"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://arcyai.com"
|
|
18
|
+
}
|