-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.99 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
{
"name": "posthog-code",
"version": "0.0.0",
"private": true,
"description": "PostHog Code monorepo - PostHog desktop task manager and agent",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
"scripts": {
"setup": "bash apps/code/bin/setup",
"prepare": "husky",
"dev": "pnpm build:deps && mprocs",
"dev:ph": "pnpm build:deps && bash scripts/ensure-phrocs.sh && bin/phrocs --config mprocs.yaml",
"dev:agent": "pnpm --filter agent dev",
"dev:git": "pnpm --filter @posthog/git dev",
"dev:code": "pnpm --filter code start",
"build": "turbo build",
"build:deps": "turbo build --filter=@posthog/code^...",
"package": "turbo build && pnpm --filter code package",
"test": "turbo test",
"test:bun": "turbo test --filter=@posthog/core --filter=@posthog/cli",
"test:vitest": "pnpm --filter code --filter @posthog/electron-trpc test",
"test:e2e": "pnpm --filter code test:e2e",
"test:e2e:headed": "pnpm --filter code test:e2e:headed",
"typecheck": "turbo typecheck",
"lint": "biome check --write --unsafe",
"format": "biome format --write",
"clean": "pnpm -r clean",
"knip": "knip",
"skills:pull": "node scripts/pull-skills.mjs",
"update:phrocs": "rm -f bin/phrocs && bash scripts/ensure-phrocs.sh"
},
"keywords": [
"posthog",
"code",
"tasks",
"developer-tools",
"agent"
],
"author": "PostHog",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@posthog/cli": "^0.5.26",
"fflate": "^0.8.2",
"husky": "^9.1.7",
"knip": "^5.66.3",
"lint-staged": "^15.5.2",
"mprocs": "^0.7.1",
"turbo": "^2.6.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write --unsafe --files-ignore-unknown=true --no-errors-on-unmatched",
"bash -c 'pnpm typecheck'"
]
}
}