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
134 lines (134 loc) · 3.59 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.59 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
123
124
125
126
127
128
129
130
131
132
133
134
{
"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": "rimraf package-lock.json && npm i",
"test": "wireit",
"build": "wireit",
"lint": "wireit",
"ci": "npm ci",
"s": "npm run dev -w packages/board-server --watch",
"d": "(cd packages/website && npm run dev) # Starts the docs website",
"w": "(cd packages/visual-editor && npm run dev) # Starts the breadboard web UI",
"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>",
"!./packages/node-proxy-server/functions#<this>",
"!./packages/node-proxy-server#<this>"
]
},
"test": {
"dependencies": [
"<workspaces>#<this>"
]
},
"lint": {
"dependencies": [
"<workspaces>#<this>",
"!./packages/jsandbox#<this>",
"!./packages/node-proxy-server#<this>"
]
},
"ci:local": {
"dependencies": [
"build",
"check"
]
},
"check": {
"dependencies": [
"syncpack:check",
"check:format",
"lint",
"test"
]
},
"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": {
"@changesets/cli": "^2.28.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ava": "^5.2.0",
"eslint": "^8.57.1",
"eslint-plugin-expect-type": "^0.6.2",
"npm-ci": "^0.0.2",
"rimraf": "^6.0.1",
"rollup": "^4.39.0",
"rollup-plugin-dts": "^6.2.1",
"syncpack": "^13.0.3",
"typescript": "^5.8.2",
"wireit": "^0.15.0-pre.1"
},
"workspaces": [
"./core/*",
"./packages/*",
"./packages/node-proxy-server/functions"
],
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.37.0",
"@rollup/rollup-linux-x64-gnu": "^4.38.0"
},
"dependencies": {
"express": "^4.21.2",
"json-schema": "^0.4.0",
"litegraph.js": "^0.7.18",
"prettier": "^3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/breadboard-ai/breadboard.git"
}
}