microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f8bb760fa7ccfd347d30af87bba3a137c75ee74e

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/classify/package.json

39lines · modecode

1{
2 "name": "classify",
3 "version": "0.0.1",
4 "private": true,
5 "description": "classify Example",
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/classify"
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 "chalk": "^5.3.0",
25 "copyfiles": "^2.4.1",
26 "dotenv": "^16.3.1",
27 "typeagent": "workspace:*",
28 "typechat": "^0.1.1"
29 },
30 "devDependencies": {
31 "@types/node": "^18.18.7",
32 "rimraf": "^5.0.5",
33 "typescript": "^5.4.2"
34 },
35 "engines": {
36 "node": ">=18",
37 "pnpm": ">=8"
38 }
39}
40