-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.1 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.1 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
{
"name": "m365-copilot-bun-proxy",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start:proxy": "bun src/proxy/index.ts",
"dev:proxy": "bun --watch src/proxy/index.ts",
"cli": "bun src/cli/index.ts",
"build:proxy": "bun build src/proxy/index.ts --compile --outfile dist/m365-copilot-bun-proxy && bun -e \"const fs=require('node:fs');fs.copyFileSync('config.json','dist/config.json');fs.copyFileSync('src/cli/playwright-token.node.mjs','dist/playwright-token.node.mjs');\"",
"build:cli": "bun build src/cli/index.ts --compile --outfile dist/m365-copilot-bun-cli && bun -e \"const fs=require('node:fs');fs.copyFileSync('config.json','dist/config.json');fs.copyFileSync('src/cli/playwright-token.node.mjs','dist/playwright-token.node.mjs');\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opentui/core": "^0.1.77",
"@playwright/test": "^1.58.2",
"hono": "^4.11.9",
"playwright": "^1.58.2",
"ws": "^8.19.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/ws": "^8.5.14",
"bun-types": "^1.3.9",
"typescript": "^5.9.3"
}
}