microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ee948abe70f6e3cadc13dbb81ad522bdfadc00a9

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/whisperClient/package.json

42lines · modecode

1{
2 "name": "local-whisper-client",
3 "version": "0.0.1",
4 "description": "Client for testing local whisper service instances",
5 "homepage": "https://github.com/microsoft/TypeAgent#readme",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/microsoft/TypeAgent.git",
9 "directory": "ts/examples/whisperClient"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "main": "dist/index.js",
15 "scripts": {
16 "build": "npm run tsc && npm run webpack",
17 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
18 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
19 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
20 "start": "webpack serve --open",
21 "tsc": "tsc -b tsconfig.json",
22 "webpack": "webpack"
23 },
24 "dependencies": {
25 "chalk": "^5.3.0",
26 "debug": "^4.3.4"
27 },
28 "devDependencies": {
29 "@types/debug": "^4.1.10",
30 "@types/jest": "^29.5.7",
31 "@types/node": "^18.18.7",
32 "copy-webpack-plugin": "^12.0.1",
33 "jest": "^29.7.0",
34 "prettier": "^3.2.5",
35 "rimraf": "^5.0.5",
36 "ts-loader": "^9.5.1",
37 "typescript": "^5.4.2",
38 "webpack": "^5.90.0",
39 "webpack-cli": "^5.1.4",
40 "webpack-dev-server": "^5.0.4"
41 }
42}
43