microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bc2dc7df084977bc3da24a9398fd3a08d55c3e7e

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/agent-flows/package.json

38lines · modecode

1{
2 "name": "@typeagent/agent-flows",
3 "version": "0.0.1",
4 "description": "Shared workflow infrastructure for TypeAgent flow agents",
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/agent-flows"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": "./dist/index.js"
16 },
17 "types": "./dist/index.d.ts",
18 "files": [
19 "dist",
20 "!dist/test"
21 ],
22 "scripts": {
23 "build": "npm run tsc",
24 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
25 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
26 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
27 "tsc": "tsc -b"
28 },
29 "dependencies": {
30 "typescript": "~5.4.5"
31 },
32 "devDependencies": {
33 "rimraf": "^6.0.1"
34 },
35 "engines": {
36 "node": ">=22"
37 }
38}
39