@luketandjung/ariadne 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/dist/index.cjs +3672 -0
- package/dist/index.d.ts +8504 -0
- package/dist/index.js +3638 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@luketandjung/ariadne",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A composable, structured, effectful agent SDK built off the backs of the Dedalus Labs backend",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"./package.json": "./package.json",
|
|
11
|
+
".": "./src/index.ts",
|
|
12
|
+
"./*": "./src/*.ts",
|
|
13
|
+
"./internal/*": null
|
|
14
|
+
},
|
|
15
|
+
"files": ["dist"],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "bunup",
|
|
18
|
+
"dev": "bunup --watch",
|
|
19
|
+
"test": "bun test"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@effect/experimental": "^0.58.0",
|
|
23
|
+
"@effect/platform": "^0.94.1",
|
|
24
|
+
"@effect/rpc": "^0.73.0",
|
|
25
|
+
"effect": "^3.19.14",
|
|
26
|
+
"find-my-way-ts": "^0.1.6"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {},
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/LukeTandjung/ariadne.git"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/LukeTandjung/ariadne#readme"
|
|
35
|
+
}
|