microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1adc19e53b9dfd93f84ff36cd1ee7fdfdefe1548

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/schemaStudio/package.json

42lines · modecode

1{
2 "name": "schema-studio",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Automatic Schema Authoring",
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/schemaStudio"
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 "action-schema": "workspace:*",
25 "aiclient": "workspace:*",
26 "dotenv": "^16.3.1",
27 "interactive-app": "workspace:*",
28 "schema-author": "workspace:*",
29 "typeagent": "workspace:*",
30 "typechat": "^0.1.1",
31 "typescript": "^5.4.2"
32 },
33 "devDependencies": {
34 "copyfiles": "^2.4.1",
35 "rimraf": "^6.0.1",
36 "typescript": "^5.4.2"
37 },
38 "engines": {
39 "node": ">=18",
40 "pnpm": ">=8"
41 }
42}
43