-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.57 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.57 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
{
"private": true,
"name": "bt-studio-monorepo",
"workspaces": [
"packages/*",
"skills/*"
],
"scripts": {
"build": "yarn workspaces foreach -Atv run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint packages/*/src",
"typecheck": "yarn workspaces foreach -Atv run typecheck",
"check": "yarn build && yarn lint && yarn typecheck && yarn test",
"studio": "node packages/cli/dist/index.js",
"studio:demo": "node packages/cli/dist/index.js --demo",
"dev:server": "yarn workspace @bt-studio/studio-server dev",
"dev:ui": "yarn workspace @bt-studio/studio-ui dev",
"dev": "concurrently -n server,ui \"yarn dev:server\" \"yarn dev:ui\"",
"publish:all": "yarn build && bash -c 'for pkg in packages/*/; do (cd \"$pkg\" && npm publish --access public); done'",
"publish:dry": "yarn build && bash -c 'for pkg in packages/*/; do (cd \"$pkg\" && npm publish --access public --dry-run); done'",
"npm:patch": "bash -c 'for pkg in packages/*/package.json; do (cd \"$(dirname \"$pkg\")\" && npm version patch --no-git-tag-version); done && git add packages/*/package.json && git commit -m \"chore: bump all packages patch version\"'"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}