microsoft/TypeAgent

Public

mirrored from https://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/spelunker/package.json

50lines · modecode

1{
2 "name": "spelunker-example",
3 "version": "0.1",
4 "private": true,
5 "description": "Spelunker 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/spelunker"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "files": [
16 "dist/",
17 "src/chunker.py",
18 "src/sample.py.txt"
19 ],
20 "scripts": {
21 "build": "npm run tsc",
22 "postbuild": "copyfiles -u 1 \"src/**/*Schema.ts\" \"src/**/*.txt\" \"src/*.py\" dist",
23 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
24 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
25 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
26 "start": "node dist/main.js",
27 "tsc": "tsc -p src"
28 },
29 "dependencies": {
30 "aiclient": "workspace:*",
31 "chalk": "^5.3.0",
32 "code-processor": "workspace:*",
33 "dotenv": "^16.3.1",
34 "interactive-app": "workspace:*",
35 "knowledge-processor": "workspace:*",
36 "typeagent": "workspace:*",
37 "typechat": "^0.1.1",
38 "typescript": "^5.4.2"
39 },
40 "devDependencies": {
41 "@types/node": "^18.18.7",
42 "@types/readline-sync": "^1.4.8",
43 "copyfiles": "^2.4.1",
44 "rimraf": "^5.0.5"
45 },
46 "engines": {
47 "node": ">=18",
48 "pnpm": ">=8"
49 }
50}
51