microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/examples/chat/package.json
60lines · 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 | "runchat": "node dist/main.js memory", |
| 22 | "runcode": "node dist/main.js code", |
| 23 | "runcodememory": "node dist/main.js codeMemory", |
| 24 | "runknowProc": "node dist/main.js knowledgeProc", |
| 25 | "tsc": "tsc -p src" |
| 26 | }, |
| 27 | "dependencies": { |
| 28 | "@azure/search-documents": "12.1.0", |
| 29 | "aiclient": "workspace:*", |
| 30 | "better-sqlite3": "12.6.2", |
| 31 | "chalk": "^5.4.1", |
| 32 | "code-processor": "workspace:*", |
| 33 | "conversation-memory": "workspace:*", |
| 34 | "dotenv": "^16.3.1", |
| 35 | "examples-lib": "workspace:*", |
| 36 | "exifreader": "^4.30.1", |
| 37 | "image-memory": "workspace:*", |
| 38 | "interactive-app": "workspace:*", |
| 39 | "knowledge-processor": "workspace:*", |
| 40 | "knowpro": "workspace:*", |
| 41 | "knowpro-test": "workspace:*", |
| 42 | "memory-providers": "workspace:*", |
| 43 | "memory-storage": "workspace:*", |
| 44 | "telemetry": "workspace:*", |
| 45 | "textpro": "workspace:*", |
| 46 | "typeagent": "workspace:*", |
| 47 | "typechat": "^0.1.1", |
| 48 | "typechat-utils": "workspace:*", |
| 49 | "typescript": "~5.4.5" |
| 50 | }, |
| 51 | "devDependencies": { |
| 52 | "@types/better-sqlite3": "7.6.13", |
| 53 | "c8": "^10.1.3", |
| 54 | "copyfiles": "^2.4.1", |
| 55 | "rimraf": "^6.0.1" |
| 56 | }, |
| 57 | "engines": { |
| 58 | "node": ">=20" |
| 59 | } |
| 60 | } |