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
54 lines (54 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "@langwatch/server",
"version": "3.5.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/server/templates/",
"langwatch/",
"langevals/",
"python-sdk/",
"mcp-server/",
"scripts/",
"README.md",
"LICENSE.md"
],
"scripts": {
"build:cli": "pnpm --filter @langwatch/server-cli build",
"dev:cli": "pnpm --filter @langwatch/server-cli dev",
"test:cli": "pnpm --filter @langwatch/server-cli test",
"pack:npm": "bash scripts/pack-npm.sh",
"release:dry-run": "bash scripts/pack-npm.sh && tar -tzf langwatch-server-*.tgz | head -50"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}