microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8ba3ebd84dd1bb6343ebae028996313cabd70764

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/examplesLib/package.json

41lines · modecode

1{
2 "name": "examples-lib",
3 "version": "0.0.1",
4 "description": "Shared library for implementing examples.",
5 "homepage": "https://github.com/microsoft/TypeAgent#readme",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/microsoft/TypeAgent.git",
9 "directory": "ts/examples/examplesLib"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": "./dist/index.js"
16 },
17 "types": "./dist/index.d.ts",
18 "scripts": {
19 "build": "npm run tsc",
20 "postbuild": "copyfiles -u 1 \"src/**/*Schema*.ts\" dist",
21 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
22 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
23 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
24 "tsc": "tsc -b"
25 },
26 "dependencies": {
27 "aiclient": "workspace:*",
28 "chalk": "^5.4.1",
29 "dotenv": "^16.3.1",
30 "interactive-app": "workspace:*",
31 "knowpro": "workspace:*",
32 "typeagent": "workspace:*",
33 "typechat": "^0.1.1"
34 },
35 "devDependencies": {
36 "copyfiles": "^2.4.1",
37 "prettier": "^3.5.3",
38 "rimraf": "^6.0.1",
39 "typescript": "~5.4.5"
40 }
41}
42