microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ec1a127c43e511cfaf5bdb778f936623a42ef74b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/examples/chat/package.json

43lines · modecode

1{
2 "name": "chat-example",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Chat Example",
6 "homepage": "https://github.com/microsoft/TypeAgent#readme",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/microsoft/TypeAgent.git",
10 "directory": "ts/examples/chat"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "scripts": {
16 "build": "npm run tsc",
17 "postbuild": "copyfiles -u 1 \"src/**/*Schema.ts\" \"src/**/*.txt\" dist",
18 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
19 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
20 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
21 "tsc": "tsc -p src"
22 },
23 "dependencies": {
24 "aiclient": "workspace:*",
25 "chalk": "^5.3.0",
26 "code-processor": "workspace:*",
27 "dotenv": "^16.3.1",
28 "interactive-app": "workspace:*",
29 "knowledge-processor": "workspace:*",
30 "typeagent": "workspace:*",
31 "typechat": "^0.1.0",
32 "typescript": "^5.4.2"
33 },
34 "devDependencies": {
35 "@types/node": "^18.18.7",
36 "copyfiles": "^2.4.1",
37 "rimraf": "^5.0.5"
38 },
39 "engines": {
40 "node": ">=18",
41 "pnpm": ">=8"
42 }
43}
44