microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/examples/commandHistogram/package.json
52lines · modecode
| 1 | { |
| 2 | "name": "telemetry-query-example", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "Telemetry Database Query 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/commandHistogram" |
| 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 | "runtests": "node dist/main.js tests", |
| 25 | "tsc": "tsc -p src" |
| 26 | }, |
| 27 | "dependencies": { |
| 28 | "@typeagent/common-utils": "workspace:*", |
| 29 | "aiclient": "workspace:*", |
| 30 | "chalk": "^5.4.1", |
| 31 | "code-processor": "workspace:*", |
| 32 | "conversation-memory": "workspace:*", |
| 33 | "dotenv": "^16.3.1", |
| 34 | "exifreader": "^4.30.1", |
| 35 | "image-memory": "workspace:*", |
| 36 | "interactive-app": "workspace:*", |
| 37 | "knowledge-processor": "workspace:*", |
| 38 | "knowpro": "workspace:*", |
| 39 | "memory-providers": "workspace:*", |
| 40 | "mongodb": "^6.15.0", |
| 41 | "typeagent": "workspace:*", |
| 42 | "typechat": "^0.1.1", |
| 43 | "typescript": "~5.4.5" |
| 44 | }, |
| 45 | "devDependencies": { |
| 46 | "copyfiles": "^2.4.1", |
| 47 | "rimraf": "^6.0.1" |
| 48 | }, |
| 49 | "engines": { |
| 50 | "node": ">=20" |
| 51 | } |
| 52 | } |
| 53 | |