microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1adc19e53b9dfd93f84ff36cd1ee7fdfdefe1548

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/aiclient/package.json

49lines · modecode

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