microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-config-execution-script-reuse-command-handl

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/aiclient/package.json

53lines · modecode

1{
2 "name": "aiclient",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Clients for AI APIs used by Microsoft AI Systems team.",
6 "homepage": "https://github.com/microsoft/TypeAgent#readme",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/microsoft/TypeAgent.git",
10 "directory": "ts/packages/aiclient"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "exports": {
16 ".": "./dist/index.js",
17 "./test": "./dist/test/testCore.js"
18 },
19 "types": "./dist/index.d.ts",
20 "files": [
21 "dist",
22 "!dist/test"
23 ],
24 "scripts": {
25 "build": "npm run tsc",
26 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
27 "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
28 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
29 "prettier:fix": "prettier --write . --ignore-path ../../prettierignore",
30 "test": "npm run test:local",
31 "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"",
32 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
33 "tsc": "tsc -b"
34 },
35 "dependencies": {
36 "@azure/identity": "^4.10.0",
37 "async": "^3.2.5",
38 "debug": "^4.4.0",
39 "typechat": "^0.1.1"
40 },
41 "devDependencies": {
42 "@types/async": "^3.2.24",
43 "@types/debug": "^4.1.12",
44 "@types/jest": "^29.5.7",
45 "dotenv": "^16.3.1",
46 "jest": "^29.7.0",
47 "rimraf": "^6.0.1",
48 "typescript": "~5.4.5"
49 },
50 "engines": {
51 "node": ">=20"
52 }
53}
54