microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1e82a4e8b4b05e4a5882a90fe1ff4d2e283873cc

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/api/package.json

53lines · modecode

1{
2 "name": "agent-api",
3 "version": "0.0.1",
4 "description": "TypeAgent API",
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/api"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "main": "./dist/index.js",
15 "scripts": {
16 "build": "npm run tsc",
17 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
18 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
19 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
20 "start": "node ./dist/index.js",
21 "test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
22 "test:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
23 "test:full": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
24 "tsc": "tsc -b"
25 },
26 "dependencies": {
27 "@typeagent/agent-sdk": "workspace:*",
28 "agent-cache": "workspace:*",
29 "agent-dispatcher": "workspace:*",
30 "aiclient": "workspace:*",
31 "chalk": "^5.3.0",
32 "common-utils": "workspace:*",
33 "debug": "^4.3.4",
34 "dotenv": "^16.3.1",
35 "find-config": "^1.0.0",
36 "node-http": "0.0.5",
37 "rimraf": "^5.0.5",
38 "ts-node": "^10.9.1",
39 "typechat": "^0.1.1",
40 "typescript": "^5.4.3",
41 "ws": "^8.17.1"
42 },
43 "devDependencies": {
44 "@types/debug": "^4.1.10",
45 "@types/find-config": "1.0.4",
46 "@types/jest": "^29.5.7",
47 "@types/node": "^18.18.7",
48 "@types/ws": "^8.5.10",
49 "jest": "^29.7.0",
50 "prettier": "^3.2.5",
51 "typescript": "^5.4.3"
52 }
53}
54