forked from ag-ui-protocol/ag-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.05 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
{
"name": "ag-ui",
"author": "Markus Ecker <markus.ecker@gmail.com>",
"private": true,
"scripts": {
"build": "nx run-many -t build",
"clean": "git clean -fdX --exclude=\".env\"",
"build:clean": "pnpm run clean && pnpm install && pnpm run build",
"dev": "pnpm run build --projects=sdks/** && nx watch --projects=sdks/** -- pnpm run build --projects=sdks/**",
"dev:integrations": "pnpm run build --projects=integrations/** && nx watch --projects=integrations/** -- pnpm run build --projects=integrations/**",
"dev:middlewares": "pnpm run build --projects=middlewares/** && nx watch --projects=middlewares/** -- pnpm run build --projects=middlewares/**",
"dev:examples": "nx run-many -t dev --projects=apps/**",
"start": "nx run-many -t start",
"lint": "nx run-many -t lint",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"check-types": "nx run-many -t check-types",
"test": "nx run-many -t test",
"test:coverage": "nx run-many -t test:coverage",
"test:watch": "nx run-many -t test && nx watch --all -- nx run-many -t test",
"create-integration": "pnpm dlx tsx create-integration.ts",
"graph": "nx graph",
"bump": "pnpm --filter './sdks/typescript/packages/*' exec -- pnpm version",
"bump:alpha": "pnpm --filter './sdks/typescript/packages/*' exec -- pnpm version --preid alpha",
"publish": "pnpm run clean && pnpm install && pnpm run build && pnpm publish -r --filter='./sdks/typescript/packages/*'",
"publish:integrations": "pnpm run clean && pnpm install && pnpm run build && pnpm publish -r --filter='./integrations/*'",
"publish:alpha": "pnpm run clean && pnpm install && pnpm run build && pnpm publish -r --no-git-checks --filter='./sdks/typescript/packages/*' --tag alpha",
"test:exports": "nx run-many -t test:exports"
},
"devDependencies": {
"nx": "^22.4.5",
"prettier": "^3.5.3",
"typescript": "5.8.2"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18"
},
"version": "0.0.1",
"pnpm": {
"overrides": {
"langium": "3.2.0"
}
}
}