microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0657252fbeb2eb0e4613333df6d0535cbf09cfdc

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/searchActionTest/package.json

40lines · modecode

1{
2 "name": "search-action-test",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Test of user requests for search actions",
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/searchActionTest"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "scripts": {
16 "build": "npm run tsc",
17 "postbuild": "copyfiles -u 1 \"src/**/*Schema.ts\" \"src/**/*.txt\" dist",
18 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
19 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
20 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
21 "tsc": "tsc -p src"
22 },
23 "dependencies": {
24 "aiclient": "workspace:*",
25 "common-utils": "workspace:*",
26 "copyfiles": "^2.4.1",
27 "dotenv": "^16.3.1",
28 "interactive-app": "workspace:*",
29 "typeagent": "workspace:*",
30 "typechat": "^0.1.1",
31 "typescript": "^5.4.2"
32 },
33 "devDependencies": {
34 "rimraf": "^6.0.1"
35 },
36 "engines": {
37 "node": ">=18",
38 "pnpm": ">=8"
39 }
40}
41