microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2994984482e393f4eb17ab99eae140fb10cd6261

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/siteSchemas/package.json

47lines · modecode

1{
2 "name": "site-schemas",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Site Schemas",
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/siteSchemas"
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 "start": "node dist/crosswordPage.js",
22 "tsc": "tsc -p src"
23 },
24 "dependencies": {
25 "aiclient": "workspace:*",
26 "common-utils": "workspace:*",
27 "copyfiles": "^2.4.1",
28 "dotenv": "^16.3.1",
29 "find-config": "^1.0.0",
30 "jsonpath": "^1.1.1",
31 "typeagent": "workspace:*",
32 "typechat": "^0.1.0",
33 "typescript": "^5.4.2",
34 "ws": "^8.17.1"
35 },
36 "devDependencies": {
37 "@types/find-config": "1.0.4",
38 "@types/jsonpath": "^0.2.4",
39 "@types/node": "^18.18.7",
40 "@types/ws": "^8.5.10",
41 "rimraf": "^5.0.5"
42 },
43 "engines": {
44 "node": ">=18",
45 "pnpm": ">=8"
46 }
47}
48