microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a3694ef9cffd2f587c8d3fdd92162f3192a79db0

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/spelunker/package.json

49lines · modecode

1{
2 "name": "spelunker-example",
3 "version": "0.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 "code-processor": "workspace:*",
32 "dotenv": "^16.3.1",
33 "interactive-app": "workspace:*",
34 "knowledge-processor": "workspace:*",
35 "typeagent": "workspace:*",
36 "typechat": "^0.1.1",
37 "typescript": "^5.4.2"
38 },
39 "devDependencies": {
40 "@types/node": "^18.18.7",
41 "@types/readline-sync": "^1.4.8",
42 "copyfiles": "^2.4.1",
43 "rimraf": "^5.0.5"
44 },
45 "engines": {
46 "node": ">=18",
47 "pnpm": ">=8"
48 }
49}
50