@adriane-ai/graph-sdk 0.1.0-rc.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/LICENSE +201 -0
- package/NOTICE +13 -0
- package/README.md +72 -0
- package/dist/index.d.ts +2684 -0
- package/dist/index.js +5546 -0
- package/dist/index.js.map +1 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@adriane-ai/graph-sdk",
|
|
3
|
+
"license": "Apache-2.0",
|
|
4
|
+
"version": "0.1.0-rc.1",
|
|
5
|
+
"description": "The front door to the Adriane framework — build, compile and run stateful, resumable agent graphs. Self-contained bundle; the Rust engine (@adriane-ai/napi) activates automatically when installed.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"NOTICE"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@anthropic-ai/sdk": "^0.69.0",
|
|
28
|
+
"drizzle-orm": "^0.44.7",
|
|
29
|
+
"pg": "^8.13.1",
|
|
30
|
+
"zod": "^3.24.4"
|
|
31
|
+
},
|
|
32
|
+
"optionalDependencies": {
|
|
33
|
+
"@adriane-ai/napi": "0.1.0-rc.1"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"tsup": "^8.3.5",
|
|
37
|
+
"tsx": "^4.20.6",
|
|
38
|
+
"typescript": "^5.8.3",
|
|
39
|
+
"vitest": "^2.1.9"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"lint": "eslint .",
|
|
44
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"example": "node --import tsx examples/quickstart.ts",
|
|
47
|
+
"example:agent": "node --import tsx examples/agent.ts",
|
|
48
|
+
"example:qa": "node --import tsx examples/qa-rag.ts",
|
|
49
|
+
"example:tokens": "node --import tsx examples/token-economics.ts",
|
|
50
|
+
"example:startup": "node --import tsx examples/startup-e2e.ts",
|
|
51
|
+
"example:finance": "node --import tsx examples/finance-sage-optimization.ts",
|
|
52
|
+
"example:product": "node --import tsx examples/product-pipeline.ts",
|
|
53
|
+
"example:docqa": "node --import tsx examples/doc-qa-reference.ts"
|
|
54
|
+
}
|
|
55
|
+
}
|