-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@posthog/opencode",
"version": "0.1.1",
"description": "PostHog LLM Analytics plugin for OpenCode",
"author": "PostHog",
"contributors": [
"Nejc Drobnič <nejc@nejc.dev>",
"PostHog"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"opencode-plugin",
"posthog",
"ai",
"llm",
"observability",
"tracing",
"analytics"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PostHog/posthog-opencode.git"
},
"bugs": {
"url": "https://github.com/PostHog/posthog-opencode/issues"
},
"homepage": "https://github.com/PostHog/posthog-opencode#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.23.0",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint src/ && oxfmt --check .",
"lint:fix": "oxlint --fix src/ && oxfmt --write .",
"changeset": "changeset",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"posthog-node": "^5.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@opencode-ai/plugin": "*",
"@opencode-ai/sdk": "*",
"@types/node": "^26.1.2",
"oxfmt": "^0.62.0",
"oxlint": "^1.55.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}