-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 819 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "vibecheck-monorepo",
"private": true,
"version": "0.0.1",
"description": "VibeCheck monorepo root.",
"workspaces": [
"packages/vscode-extension",
"packages/vscode-extension/webview",
"packages/hooks"
],
"scripts": {
"compile": "npm run compile --workspace=vibecheck",
"watch": "npm run watch --workspace=vibecheck",
"build:webview": "npm run build --workspace=vibecheck-webview",
"build": "npm run build:webview && npm run compile",
"dev:webview": "npm run dev --workspace=vibecheck-webview",
"install-hook": "npm run install-hook --workspace=vibecheck-hooks",
"update:extension": "bash scripts/update-editor-extension.sh",
"start:api": "bash scripts/start-api.sh",
"seed:demo": ".venv/bin/python scripts/seed-sessions.py --auto --replace"
}
}