|
1 | 1 | {
|
| 2 | + "config": { |
| 3 | + "WIREIT_FAILURES": "continue", |
| 4 | + "WIREIT_LOGGER": "metrics" |
| 5 | + }, |
2 | 6 | "dependencies": {
|
3 |
| - "@exadev/breadboard-kits": "^0.9.0", |
| 7 | + "@exadev/breadboard-kits": "^0.9.1", |
4 | 8 | "@google-labs/breadboard": "^0.6.0"
|
5 | 9 | },
|
6 | 10 | "devDependencies": {
|
7 |
| - "@types/node": "^20.10.4", |
8 |
| - "tsx": "^4.6.2", |
9 |
| - "typescript": "^5.3.3" |
| 11 | + "@types/node": "^20.10.5", |
| 12 | + "tsx": "^4.7.0", |
| 13 | + "typescript": "^5.3.3", |
| 14 | + "wireit": "^0.14.1" |
10 | 15 | },
|
| 16 | + "engineStrict": true, |
11 | 17 | "engines": {
|
12 | 18 | "node": ">=19"
|
13 | 19 | },
|
14 |
| - "engineStrict": true, |
15 | 20 | "name": "breadboard-samples",
|
| 21 | + "packageManager": "[email protected]", |
16 | 22 | "private": true,
|
17 |
| - "workspaces": [ |
18 |
| - "./samples/**/*" |
19 |
| - ], |
| 23 | + "repository": "https://github.com/GoogleChromeLabs/breadboard-samples", |
20 | 24 | "scripts": {
|
21 |
| - "start": "yarn workspaces foreach -A run start", |
22 |
| - "watch": "yarn workspaces foreach -A run watch", |
23 |
| - "build": "yarn workspaces foreach -A run build" |
| 25 | + "build": "wireit", |
| 26 | + "start": "wireit", |
| 27 | + "watch": "wireit" |
24 | 28 | },
|
25 |
| - "repository": "https://github.com/GoogleChromeLabs/breadboard-samples", |
26 |
| - "packageManager": "[email protected]" |
| 29 | + "wireit": { |
| 30 | + "build": { |
| 31 | + "command": "yarn workspaces foreach -A run build" |
| 32 | + }, |
| 33 | + "start": { |
| 34 | + "command": "yarn workspaces foreach -A run start", |
| 35 | + "dependencies": [ |
| 36 | + "./samples/Breadboard Walkthrough:start" |
| 37 | + ] |
| 38 | + }, |
| 39 | + "watch": { |
| 40 | + "command": "yarn workspaces foreach -A run watch" |
| 41 | + } |
| 42 | + }, |
| 43 | + "workspaces": [ |
| 44 | + "./samples/**/*" |
| 45 | + ] |
27 | 46 | }
|
0 commit comments