-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 931 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 931 Bytes
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
{
"name": "braintrust-setup-workspace",
"//": "The following version is NOT the CLI version. CLI version is tracked in packages/spark/package.json",
"version": "0.0.0",
"private": true,
"description": "CLI wizard to get your project set up with Braintrust",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.3",
"scripts": {
"start": "pnpm build && node packages/spark/dist/cli.mjs",
"build": "turbo run build",
"build:sea": "turbo run build --filter=./packages/spark && node scripts/build-sea.mjs",
"watch": "turbo run watch --filter=./packages/spark",
"start:beau": "pnpm build && node packages/spark/dist/cli.beau.js",
"typings": "turbo run typings",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"prettier": "3.8.3",
"turbo": "^2.9.14"
}
}