microsoft/TypeAgent
Publicmirrored from https://github.com/microsoft/TypeAgentAvailable
ts/tools/docsAutogen/package.json
49lines · modecode
| 1 | { |
| 2 | "name": "@typeagent/docs-autogen", |
| 3 | "version": "0.0.1", |
| 4 | "description": "Scheduled regeneration of package-level README.md files for the TypeAgent monorepo.", |
| 5 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 6 | "repository": { |
| 7 | "type": "git", |
| 8 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 9 | "directory": "ts/tools/docsAutogen" |
| 10 | }, |
| 11 | "license": "MIT", |
| 12 | "author": "Microsoft", |
| 13 | "type": "module", |
| 14 | "exports": { |
| 15 | ".": "./dist/indexNode.js" |
| 16 | }, |
| 17 | "bin": { |
| 18 | "docs-autogen": "./dist/cli.js" |
| 19 | }, |
| 20 | "files": [ |
| 21 | "dist", |
| 22 | "!dist/test" |
| 23 | ], |
| 24 | "scripts": { |
| 25 | "build": "npm run tsc", |
| 26 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 27 | "docs:generate": "node ./dist/cli.js", |
| 28 | "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js", |
| 29 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 30 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 31 | "test": "npm run test:local", |
| 32 | "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"", |
| 33 | "tsc": "tsc -b" |
| 34 | }, |
| 35 | "dependencies": { |
| 36 | "aiclient": "workspace:*", |
| 37 | "chalk": "^5.4.1", |
| 38 | "debug": "^4.4.0" |
| 39 | }, |
| 40 | "devDependencies": { |
| 41 | "@types/debug": "^4.1.12", |
| 42 | "@types/jest": "^29.5.7", |
| 43 | "@types/node": "^22.10.5", |
| 44 | "jest": "^29.7.0", |
| 45 | "prettier": "^3.5.3", |
| 46 | "rimraf": "^6.0.1", |
| 47 | "typescript": "~5.4.5" |
| 48 | } |
| 49 | } |
| 50 | |