-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (66 loc) · 2.24 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "agent-shell",
"version": "1.0.0",
"description": "TypeAgent Shell",
"homepage": "https://github.com/microsoft/TypeAgent#readme",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeAgent.git",
"directory": "ts/packages/shell"
},
"license": "MIT",
"author": "Microsoft",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"build": "concurrently npm:typecheck npm:build:electron",
"build:electron": "electron-vite build",
"build:linux": "npm run build && electron-builder --linux --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:win": "npm run build && electron-builder --win --config",
"clean": "rimraf --glob out *.tsbuildinfo *.done.build.log",
"dev": "electron-vite dev",
"postinstall": "cross-env \"npm_execpath=\" electron-builder install-app-deps",
"prettier": "prettier --check . --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
"start": "electron-vite preview",
"typecheck": "concurrently npm:typecheck:node npm:typecheck:web",
"typecheck:node": "tsc -p tsconfig.node.json",
"typecheck:web": "tsc -p tsconfig.web.json"
},
"dependencies": {
"@azure/msal-browser": "^3.26.1",
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@typeagent/agent-sdk": "workspace:*",
"agent-dispatcher": "workspace:*",
"agent-rpc": "workspace:*",
"aiclient": "workspace:*",
"ansi_up": "^6.0.2",
"common-utils": "workspace:*",
"debug": "4.3.4",
"dompurify": "^3.1.6",
"dotenv": "^16.3.1",
"electron-updater": "^6.3.2",
"jose": "^5.9.6",
"markdown-it": "^14.1.0",
"microsoft-cognitiveservices-speech-sdk": "^1.38.0",
"typechat": "^0.1.1",
"ws": "^8.17.1"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/debug": "^4.1.10",
"@types/dompurify": "^3.0.5",
"@types/node": "^18.17.5",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^30.0.1",
"electron-builder": "^24.13.2",
"electron-vite": "^2.1.0",
"less": "^4.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"vite": "^5.2.14"
}
}