-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 907 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "ragbits",
"private": true,
"workspaces": [
"typescript/@ragbits/*",
"typescript/ui"
],
"scripts": {
"build": "npm run build:packages && npm run build:ui",
"build:packages": "npm run build --workspace=@ragbits/api-client && npm run build --workspace=@ragbits/api-client-react",
"build:ui": "npm run build --workspace=ui",
"build:clean": "npm run clean && npm run build",
"clean": "npm run clean --workspaces --if-present",
"dev": "npm run dev --workspaces --if-present",
"dev:ui": "npm run dev --workspace=ui",
"test": "npm run test:run --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"generate:types": "uv run python scripts/generate_typescript_from_json_schema.py"
}
}