-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 938 Bytes
/
package.json
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
{
"config": {
"WIREIT_FAILURES": "continue",
"WIREIT_LOGGER": "metrics"
},
"dependencies": {
"@exadev/breadboard-kits": "^0.9.1",
"@google-labs/breadboard": "^0.6.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"wireit": "^0.14.1"
},
"engineStrict": true,
"engines": {
"node": ">=19"
},
"name": "breadboard-samples",
"packageManager": "[email protected]",
"private": true,
"repository": "https://github.com/GoogleChromeLabs/breadboard-samples",
"scripts": {
"build": "wireit",
"start": "wireit",
"watch": "wireit"
},
"wireit": {
"build": {
"command": "yarn workspaces foreach -A run build"
},
"start": {
"command": "yarn workspaces foreach -A run start",
"dependencies": [
"./samples/Breadboard Walkthrough:start"
]
},
"watch": {
"command": "yarn workspaces foreach -A run watch"
}
},
"workspaces": [
"./samples/**/*"
]
}