@eidentic/server 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/LICENSE +201 -0
- package/README.md +48 -0
- package/dist/dist-VXER5V4E.js +1028 -0
- package/dist/index.cjs +2669 -0
- package/dist/index.d.cts +1068 -0
- package/dist/index.d.ts +1068 -0
- package/dist/index.js +1590 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@eidentic/server",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/eidentic/eidentic.git",
|
|
12
|
+
"directory": "packages/server"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.cjs",
|
|
15
|
+
"module": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"import": "./dist/index.js",
|
|
21
|
+
"require": "./dist/index.cjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"ai": "^6.0.0",
|
|
32
|
+
"cron-parser": "^5.5.0",
|
|
33
|
+
"hono": "^4.12.0",
|
|
34
|
+
"@eidentic/core": "0.1.0",
|
|
35
|
+
"@eidentic/workflow": "0.1.0",
|
|
36
|
+
"@eidentic/types": "0.1.0"
|
|
37
|
+
},
|
|
38
|
+
"optionalDependencies": {
|
|
39
|
+
"@hono/node-server": "^2.0.0"
|
|
40
|
+
},
|
|
41
|
+
"description": "Hono HTTP server for Eidentic agents — streaming query endpoint, async runs, workflow registry, auth, rate-limiting, and quotas.",
|
|
42
|
+
"keywords": [
|
|
43
|
+
"ai",
|
|
44
|
+
"agents",
|
|
45
|
+
"typescript",
|
|
46
|
+
"eidentic",
|
|
47
|
+
"server",
|
|
48
|
+
"hono",
|
|
49
|
+
"api",
|
|
50
|
+
"streaming"
|
|
51
|
+
],
|
|
52
|
+
"homepage": "https://github.com/eidentic/eidentic#readme",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/eidentic/eidentic/issues"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=22"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
61
|
+
"typecheck": "tsc --noEmit"
|
|
62
|
+
}
|
|
63
|
+
}
|