This repository was archived by the owner on Aug 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@posthog/agent",
"version": "1.25.0",
"repository": "https://github.com/PostHog/array",
"description": "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"keywords": [
"posthog",
"claude",
"agent",
"ai",
"git",
"typescript"
],
"author": "PostHog",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"build": "pnpm exec rimraf dist && pnpm exec rollup -c && pnpm exec tsc --project tsconfig.build.json --emitDeclarationOnly",
"dev": "pnpm exec rollup -c --watch",
"typecheck": "pnpm exec tsc --noEmit",
"example": "tsx example.ts",
"prepublishOnly": "pnpm run build"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/bun": "latest",
"minimatch": "^10.0.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.20.6",
"typescript": "^5.5.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.47",
"dotenv": "^17.2.3",
"yoga-wasm-web": "^0.3.3",
"zod": "^4.1.12"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"CLAUDE.md"
],
"publishConfig": {
"access": "public"
}
}