microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c59afeb081afa02f7e1cb390adbe7254e1ef893e

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/examplesLib/package.json

42lines · modecode

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