-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@codewithkenzo/pi-rig-workspace",
"version": "0.1.0",
"type": "module",
"private": true,
"workspaces": [
"shared",
"packages/*",
"extensions/*"
],
"scripts": {
"build": "bun run --filter @codewithkenzo/pi-rig build && bun run --filter @codewithkenzo/pi-dispatch build && bun run --filter @codewithkenzo/pi-theme-switcher build && bun run --filter @codewithkenzo/pi-gateway-messaging build && bun run --filter @codewithkenzo/pi-notify-cron build",
"typecheck": "bun run --filter '*' typecheck",
"test": "bun run --filter '*' test",
"setup": "bun run bin/setup.ts",
"refresh:md-index": "python3 bin/refresh_md_index.py",
"plan:tg": "python3 bin/notify_plan_to_tg.py",
"plan:tg:dry": "python3 bin/notify_plan_to_tg.py --dry-run",
"plan:watch": "python3 bin/watch_plan_updates.py",
"plan:watch:seed": "python3 bin/watch_plan_updates.py --seed",
"plan:watch:once": "python3 bin/watch_plan_updates.py --once"
}
}