microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bec9232be52610a3acd24f99ddffecde526f8200

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/vscodeSchemaGen/package.json

41lines · modecode

1{
2 "name": "vscode-schemagen",
3 "version": "0.0.1",
4 "private": true,
5 "description": "vscode commands processor",
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/vscodeSchemaGen"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "scripts": {
16 "build": "npm run tsc",
17 "postbuild": "copyfiles -q -u 1 \"src/data/**/!(output)/**/*\" 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 "chalk": "^5.3.0",
26 "copyfiles": "^2.4.1",
27 "debug": "^4.3.4",
28 "dotenv": "^16.3.1",
29 "typeagent": "workspace:*",
30 "typechat": "^0.1.1"
31 },
32 "devDependencies": {
33 "@types/node": "^18.18.7",
34 "rimraf": "^5.0.5",
35 "typescript": "^5.4.2"
36 },
37 "engines": {
38 "node": ">=18",
39 "pnpm": ">=8"
40 }
41}
42