microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.3-py

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/aiclient/package.json

52lines · modecode

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