microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e8633520f6aee8fef3a7fd588cf37d3000620ff0

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/agentSdk/package.json

36lines · modecode

1{
2 "name": "@typeagent/agent-sdk",
3 "version": "0.0.1",
4 "description": "Interface and class to be an agent",
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/agentSdk"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": "./dist/index.js",
16 "./helpers/action": "./dist/helpers/actionHelpers.js",
17 "./helpers/command": "./dist/helpers/commandHelpers.js",
18 "./helpers/display": "./dist/helpers/displayHelpers.js"
19 },
20 "types": "./dist/index.d.ts",
21 "scripts": {
22 "build": "npm run tsc",
23 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
24 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
25 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
26 "tsc": "tsc -b"
27 },
28 "dependencies": {},
29 "devDependencies": {
30 "@types/jest": "^29.5.7",
31 "jest": "^29.7.0",
32 "prettier": "^3.2.5",
33 "rimraf": "^5.0.5",
34 "typescript": "^5.4.2"
35 }
36}
37