forked from langwatch/langwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.23 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@langwatch/server",
"version": "3.16.0",
"description": "Run LangWatch locally with one command — `npx @langwatch/server`. Complete LangWatch stack: observability, evaluations, AI gateway, agent simulations.",
"license": "Apache-2.0",
"homepage": "https://langwatch.ai",
"repository": {
"type": "git",
"url": "https://github.com/langwatch/langwatch.git"
},
"bugs": {
"url": "https://github.com/langwatch/langwatch/issues"
},
"keywords": [
"langwatch",
"llm",
"observability",
"evaluations",
"ai",
"tracing",
"playground",
"self-hosted"
],
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.24.0",
"type": "module",
"bin": {
"langwatch-server": "packages/server/dist/cli.cjs"
},
"files": [
"packages/server/dist/",
"packages/actor/",
"packages/api/",
"packages/authz/",
"packages/authz-server/",
"packages/automations/",
"packages/clickhouse-client/",
"packages/handled-error/",
"packages/langy/",
"packages/observability/",
"packages/react-rum/",
"packages/redaction/",
"packages/redis-client/",
"packages/ssrf/",
"packages/system-migrations/",
"platform/app/",
"services/langevals/",
"sdks/python/",
"sdks/typescript/",
"mcp/typescript/",
"dev/scripts/",
"skills/",
"feature-map.json",
"README.md",
"LICENSE.md",
"pnpm-workspace.yaml",
"pnpm-lock.yaml",
"packages/server/package.json",
"plugins/langwatch/package.json",
"services/langyworker/package.json",
"tests/agentic-e2e/package.json"
],
"scripts": {
"dev": "pnpm --filter @langwatch/web dev",
"dev:app": "pnpm --filter @langwatch/web dev:app",
"dev:worker": "pnpm --filter @langwatch/web dev:worker",
"dev:concurrent": "pnpm --filter @langwatch/web dev:concurrent",
"dev:cli": "pnpm --filter @langwatch/server-cli dev",
"start": "pnpm --filter @langwatch/web start",
"build": "pnpm -r --filter \"!@langwatch/server\" build",
"build:app": "pnpm --filter @langwatch/web... build",
"build:cli": "pnpm --filter @langwatch/server-cli build",
"test": "pnpm -r --filter \"./packages/*\" test",
"test:unit": "pnpm --filter @langwatch/web test:unit",
"test:component": "pnpm --filter @langwatch/web test:component",
"test:integration": "pnpm --filter @langwatch/web test:integration",
"test:e2e": "pnpm --filter @langwatch/web test:e2e",
"test:cli": "pnpm --filter @langwatch/server-cli test",
"test:sdk": "pnpm --filter langwatch test",
"typecheck": "pnpm --filter @langwatch/web typecheck",
"typecheck:all": "pnpm --filter @langwatch/web typecheck:all",
"lint": "pnpm --filter @langwatch/web lint",
"lint:fix": "pnpm --filter @langwatch/web lint:fix",
"format": "pnpm --filter @langwatch/web format",
"prepare:files": "pnpm --filter @langwatch/web start:prepare:files",
"prisma:migrate": "pnpm --filter @langwatch/web prisma:migrate",
"prisma:seed": "pnpm --filter @langwatch/web prisma:seed",
"pack:npm": "bash dev/scripts/pack-npm.sh",
"release:dry-run": "bash dev/scripts/pack-npm.sh && tar -tzf langwatch-server-*.tgz | head -50"
},
"devDependencies": {
"typescript": "^7.0.2"
}
}