@hiper2d/ai-agents 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 +21 -0
- package/README.md +85 -0
- package/dist/index.d.mts +1191 -0
- package/dist/index.d.ts +1191 -0
- package/dist/index.js +4496 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4364 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hiper2d/ai-agents",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Multi-provider AI agent layer: schema-validated asks, thinking extraction, a model catalog with per-model tuning defaults, and token cost accounting for 11 LLM providers.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "hiper2d",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/hiper2d/ai-agents.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/hiper2d/ai-agents#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/hiper2d/ai-agents/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"llm",
|
|
17
|
+
"agents",
|
|
18
|
+
"openai",
|
|
19
|
+
"anthropic",
|
|
20
|
+
"gemini",
|
|
21
|
+
"deepseek",
|
|
22
|
+
"mistral",
|
|
23
|
+
"zod",
|
|
24
|
+
"structured-output",
|
|
25
|
+
"pricing"
|
|
26
|
+
],
|
|
27
|
+
"main": "./dist/index.js",
|
|
28
|
+
"module": "./dist/index.mjs",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.mjs",
|
|
34
|
+
"require": "./dist/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md",
|
|
41
|
+
"LICENSE"
|
|
42
|
+
],
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=20"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
53
|
+
"test": "jest --watchman=false",
|
|
54
|
+
"test:live": "jest --config jest.live.config.js --watchman=false --runInBand",
|
|
55
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@anthropic-ai/sdk": "0.60.0",
|
|
59
|
+
"@google/genai": "^2.15.0",
|
|
60
|
+
"@mistralai/mistralai": "^1.10.0",
|
|
61
|
+
"openai": "5.20.3",
|
|
62
|
+
"zod-to-json-schema": "^3.24.6"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"zod": "^3.25.0"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@types/jest": "^29.5.14",
|
|
69
|
+
"@types/node": "^20",
|
|
70
|
+
"dotenv": "^16.4.7",
|
|
71
|
+
"jest": "^29.7.0",
|
|
72
|
+
"ts-jest": "^29.1.1",
|
|
73
|
+
"tsup": "^8.3.5",
|
|
74
|
+
"typescript": "^5",
|
|
75
|
+
"zod": "^3.25.76"
|
|
76
|
+
}
|
|
77
|
+
}
|