Files
GacUI/.github/Agent/package.json
2026-03-01 19:07:14 -08:00

23 lines
637 B
JSON

{
"name": "copilot-agent-workspace",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "yarn workspaces run build",
"testStart": "yarn workspace copilot-portal testStart",
"testExecute": "yarn workspace copilot-portal testExecute",
"build": "yarn compile && yarn testStart && yarn testExecute",
"portal": "yarn workspace copilot-portal start",
"portal-for-test": "yarn workspace copilot-portal launch-for-test"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"typescript": "^5.7.3"
}
}