krisspy-ai 1.1.17
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 +432 -0
- package/dist/index.d.mts +961 -0
- package/dist/index.d.ts +961 -0
- package/dist/index.js +3099 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3022 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "krisspy-ai",
|
|
3
|
+
"version": "1.1.17",
|
|
4
|
+
"description": "Unified AI Agent Library - Supports Claude Agent SDK, Codex SDK, and proxy providers (OpenAI, Gemini, Z.AI)",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"dev": "tsup --watch",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"start": "node index.js",
|
|
24
|
+
"start:dev": "PATH=$HOME/.nvm/versions/node/v20.19.4/bin:$PATH nodemon index.js",
|
|
25
|
+
"proxy": "node proxy-server.js",
|
|
26
|
+
"proxy:dev": "nodemon proxy-server.js",
|
|
27
|
+
"proxy:verbose": "LOG_FULL_RESPONSE=true node proxy-server.js",
|
|
28
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
29
|
+
"test:lib": "ts-node test-lib.ts",
|
|
30
|
+
"test:image": "ts-node test-image.ts",
|
|
31
|
+
"test:video": "ts-node test-video.ts",
|
|
32
|
+
"prepublishOnly": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"ai",
|
|
36
|
+
"claude",
|
|
37
|
+
"codex",
|
|
38
|
+
"openai",
|
|
39
|
+
"gemini",
|
|
40
|
+
"anthropic",
|
|
41
|
+
"agent",
|
|
42
|
+
"sdk",
|
|
43
|
+
"proxy"
|
|
44
|
+
],
|
|
45
|
+
"author": "",
|
|
46
|
+
"license": "ISC",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.7",
|
|
49
|
+
"@openai/codex-sdk": "^0.80.0",
|
|
50
|
+
"dotenv": "^17.2.3",
|
|
51
|
+
"express": "^5.2.1",
|
|
52
|
+
"form-data": "^4.0.5",
|
|
53
|
+
"node-fetch": "^2.7.0",
|
|
54
|
+
"undici": "^7.18.2"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/node": "^20.0.0",
|
|
58
|
+
"@types/node-fetch": "^2.6.0",
|
|
59
|
+
"nodemon": "^3.1.11",
|
|
60
|
+
"tsup": "^8.0.0",
|
|
61
|
+
"typescript": "^5.0.0"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"@anthropic-ai/claude-agent-sdk": ">=0.2.0",
|
|
65
|
+
"@openai/codex-sdk": ">=0.80.0"
|
|
66
|
+
},
|
|
67
|
+
"peerDependenciesMeta": {
|
|
68
|
+
"@anthropic-ai/claude-agent-sdk": {
|
|
69
|
+
"optional": true
|
|
70
|
+
},
|
|
71
|
+
"@openai/codex-sdk": {
|
|
72
|
+
"optional": true
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=18.0.0"
|
|
77
|
+
}
|
|
78
|
+
}
|