microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0f9c60806a40010bee944a69a3bfa40a95e12e4e

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/commonUtils/package.json

47lines · 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 ".": "./dist/index.js"
16 },
17 "scripts": {
18 "build": "npm run tsc",
19 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
20 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
21 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
22 "test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
23 "tsc": "tsc -b"
24 },
25 "dependencies": {
26 "aiclient": "workspace:*",
27 "chalk": "^5.3.0",
28 "debug": "^4.3.4",
29 "dotenv": "^16.3.1",
30 "find-config": "^1.0.0",
31 "isomorphic-ws": "^5.0.0",
32 "mongodb": "^6.3.0",
33 "typechat": "^0.1.1",
34 "ws": "^8.17.1"
35 },
36 "devDependencies": {
37 "@types/debug": "^4.1.10",
38 "@types/find-config": "1.0.4",
39 "@types/jest": "^29.5.7",
40 "@types/node": "^18.18.7",
41 "@types/ws": "^8.5.10",
42 "jest": "^29.7.0",
43 "prettier": "^3.2.5",
44 "rimraf": "^5.0.5",
45 "typescript": "^5.4.2"
46 }
47}