microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c55abd9034bfd3a123c51ebd855b4e70e8b4c2d2

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/commonUtils/package.json

53lines · modecode

1{
2 "name": "common-utils",
3 "version": "0.0.1",
4 "description": "Common utilities package for the TypeAgent project.",
5 "homepage": "https://github.com/microsoft/TypeAgent#readme",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/microsoft/TypeAgent.git",
9 "directory": "ts/packages/commonUtils"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": {
16 "node": "./dist/indexNode.js",
17 "default": "./dist/indexBrowser.js"
18 },
19 "./ws": "./dist/webSockets.js"
20 },
21 "scripts": {
22 "build": "npm run tsc",
23 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
24 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
25 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
26 "test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
27 "tsc": "tsc -b"
28 },
29 "dependencies": {
30 "@typeagent/agent-sdk": "workspace:*",
31 "aiclient": "workspace:*",
32 "chalk": "^5.3.0",
33 "debug": "^4.3.4",
34 "dotenv": "^16.3.1",
35 "exifreader": "^4.23.5",
36 "find-config": "^1.0.0",
37 "isomorphic-ws": "^5.0.0",
38 "mongodb": "^6.3.0",
39 "typechat": "^0.1.1",
40 "ws": "^8.17.1"
41 },
42 "devDependencies": {
43 "@types/debug": "^4.1.10",
44 "@types/find-config": "1.0.4",
45 "@types/jest": "^29.5.7",
46 "@types/node": "^18.18.7",
47 "@types/ws": "^8.5.10",
48 "jest": "^29.7.0",
49 "prettier": "^3.2.5",
50 "rimraf": "^5.0.5",
51 "typescript": "^5.4.2"
52 }
53}
54