@claude-code-kit/agent 0.2.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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@claude-code-kit/agent",
3
+ "version": "0.2.0",
4
+ "description": "Headless agent framework for claude-code-kit — LLM query loop, tool execution, multi-provider",
5
+ "license": "MIT",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.mjs",
17
+ "require": "./dist/index.js"
18
+ }
19
+ },
20
+ "dependencies": {
21
+ "zod": ">=3.20.0"
22
+ },
23
+ "peerDependencies": {
24
+ "@anthropic-ai/sdk": ">=0.30.0",
25
+ "openai": ">=4.0.0",
26
+ "zod-to-json-schema": ">=3.20.0"
27
+ },
28
+ "peerDependenciesMeta": {
29
+ "@anthropic-ai/sdk": {
30
+ "optional": true
31
+ },
32
+ "openai": {
33
+ "optional": true
34
+ },
35
+ "zod-to-json-schema": {
36
+ "optional": true
37
+ }
38
+ },
39
+ "devDependencies": {
40
+ "@anthropic-ai/sdk": "*",
41
+ "openai": "*",
42
+ "tsup": "*",
43
+ "typescript": "*"
44
+ },
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "https://github.com/Minnzen/claude-code-kit.git",
48
+ "directory": "packages/agent"
49
+ },
50
+ "homepage": "https://github.com/Minnzen/claude-code-kit",
51
+ "bugs": "https://github.com/Minnzen/claude-code-kit/issues",
52
+ "keywords": [
53
+ "agent",
54
+ "llm",
55
+ "claude",
56
+ "openai",
57
+ "tool-use",
58
+ "ai"
59
+ ],
60
+ "engines": {
61
+ "node": ">=18"
62
+ },
63
+ "publishConfig": {
64
+ "access": "public"
65
+ },
66
+ "scripts": {
67
+ "build": "tsup",
68
+ "typecheck": "tsc --noEmit -p tsconfig.json",
69
+ "lint": "biome check src/"
70
+ }
71
+ }