microsoft/TypeAgent
Publicmirrored from https://github.com/microsoft/TypeAgentAvailable
ts/examples/viewMarkdown/package.json
52lines · modecode
| 1 | { |
| 2 | "name": "markdown-visualization", |
| 3 | "version": "0.0.1", |
| 4 | "description": "Client for visualizing markdown files", |
| 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/viewMarkdown" |
| 10 | }, |
| 11 | "license": "MIT", |
| 12 | "author": "Microsoft", |
| 13 | "type": "module", |
| 14 | "exports": { |
| 15 | "./route": "./dist/route/route.js" |
| 16 | }, |
| 17 | "main": "dist/index.js", |
| 18 | "scripts": { |
| 19 | "build": "npm run tsc && npm run webpack", |
| 20 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 21 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 22 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 23 | "start": "webpack serve --open", |
| 24 | "tsc": "tsc -b tsconfig.json", |
| 25 | "webpack": "webpack" |
| 26 | }, |
| 27 | "dependencies": { |
| 28 | "agent-dispatcher": "workspace:*", |
| 29 | "chalk": "^5.3.0", |
| 30 | "debug": "^4.3.4", |
| 31 | "express": "^4.21.1", |
| 32 | "katex": "^0.16.11", |
| 33 | "markdown-it": "^14.1.0", |
| 34 | "markdown-it-texmath": "^1.0.0" |
| 35 | }, |
| 36 | "devDependencies": { |
| 37 | "@types/debug": "^4.1.10", |
| 38 | "@types/jest": "^29.5.7", |
| 39 | "@types/katex": "^0.16.7", |
| 40 | "@types/markdown-it": "^14.1.2", |
| 41 | "@types/node": "^18.18.7", |
| 42 | "copy-webpack-plugin": "^12.0.1", |
| 43 | "jest": "^29.7.0", |
| 44 | "prettier": "^3.2.5", |
| 45 | "rimraf": "^5.0.5", |
| 46 | "ts-loader": "^9.5.1", |
| 47 | "typescript": "^5.4.2", |
| 48 | "webpack": "^5.94.0", |
| 49 | "webpack-cli": "^5.1.4", |
| 50 | "webpack-dev-server": "^5.0.4" |
| 51 | } |
| 52 | } |
| 53 | |