forked from breadboard-ai/breadboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.09 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "breadboard-ai",
"private": true,
"version": "0.0.1",
"description": "Google Labs repo for rapid prototyping",
"type": "module",
"scripts": {
"clean": "git clean -Xdf -e !.vscode/settings.json",
"update": "rm package-lock.json && npm i",
"test": "wireit",
"build": "wireit",
"lint": "wireit",
"dev": "npm run dev -w packages/unified-server --watch",
"dev:next": "npm run dev:next:nowatch --watch",
"dev:next:nowatch": "wireit",
"check:format": "prettier --check --config .prettierrc packages/**/*.ts",
"ci:local": "wireit",
"syncpack:check": "wireit",
"syncpack:check:dev": "wireit",
"syncpack:check:prod": "wireit",
"syncpack:fix": "syncpack fix-mismatches --config syncpack.config.ts && npm install",
"check": "wireit",
"markdown": "(find . -iname \"*.md\" -not -path \"*/.wireit/*\" -not -path \"*/node_modules/*\" -exec cat {} +) > all_markdown.md"
},
"wireit": {
"build": {
"dependencies": [
"<workspaces>#<this>",
"!./experiments/logic#<this>"
]
},
"test": {
"dependencies": [
"<workspaces>#<this>",
"!./packages/ui-tests#<this>",
"!./experiments/screens#<this>"
]
},
"lint": {
"dependencies": [
"<workspaces>#<this>",
"!./packages/jsandbox#<this>"
]
},
"ci:local": {
"dependencies": [
"build",
"check"
]
},
"check": {
"dependencies": [
"syncpack:check",
"check:format",
"lint",
"test"
]
},
"dev:next:nowatch": {
"dependencies": [
"./packages/unified-server:serve"
]
},
"syncpack:files": {
"files": [
"syncpack.config.ts",
"package.json",
"package-lock.json",
"packages/*/package.json",
"packages/*/package-lock.json"
]
},
"syncpack:check": {
"command": "syncpack list-mismatches --config syncpack.config.ts",
"dependencies": [
"syncpack:files"
],
"files": [],
"output": []
},
"syncpack:check:prod": {
"command": "syncpack list-mismatches --config syncpack.config.ts --types prod",
"dependencies": [
"syncpack:files"
],
"files": [],
"output": []
},
"syncpack:check:dev": {
"command": "syncpack list-mismatches --config syncpack.config.ts --types dev",
"dependencies": [
"syncpack:files"
],
"files": [],
"output": []
}
},
"keywords": [],
"author": "Google Labs Team",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.34.1",
"ava": "6.4.1",
"eslint": "^8.57.1",
"eslint-plugin-expect-type": "^0.6.2",
"prettier": "^3.6.2",
"syncpack": "^13.0.3",
"typescript": "^5.8.3",
"wireit": "^0.15.0-pre.2"
},
"workspaces": [
"./core/*",
"./packages/*",
"./experiments/*"
],
"repository": {
"type": "git",
"url": "https://github.com/breadboard-ai/breadboard.git"
}
}