-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "@posthog/context-mill",
"version": "1.53.0",
"private": true,
"type": "module",
"description": "PostHog Context Mill: assembling and packaging context for AI agents and LLMs",
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/dev-server.js",
"generate:browser-snippets": "node scripts/generate-browser-snippets.js",
"check:browser-snippets": "node scripts/generate-browser-snippets.js --check",
"visual-dags": "node scripts/visual-dags.js",
"test:plugins": "vitest run scripts/plugins/tests",
"test:plugins:watch": "vitest scripts/plugins/tests",
"test:skills": "vitest run scripts/lib/tests",
"test:skills:watch": "vitest scripts/lib/tests",
"test": "vitest run scripts/plugins/tests scripts/lib/tests",
"security-scan": "node scripts/scan-warlock.js",
"security-scan:skills": "node scripts/scan-warlock.js dist/skills"
},
"devDependencies": {
"archiver": "^7.0.1",
"chokidar": "^4.0.3",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.11.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.0",
"@posthog/warlock": "^0.2.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1"
}
}