microsoft/TypeAgent
Publicmirrored from https://github.com/microsoft/TypeAgentAvailable
ts/package.json
52lines · modecode
| 1 | { |
| 2 | "name": "typeagent-root", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "TypeAgent TypeScript Workspace Root", |
| 6 | "keywords": [], |
| 7 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 8 | "repository": { |
| 9 | "type": "git", |
| 10 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 11 | "directory": "ts" |
| 12 | }, |
| 13 | "license": "MIT", |
| 14 | "author": "Microsoft", |
| 15 | "scripts": { |
| 16 | "build": "fluid-build . -t build", |
| 17 | "check:link": "git ls-tree -r --name-only HEAD .. | grep \\.md | xargs markdown-link-check", |
| 18 | "check:policy": "node tools/scripts/repo-policy-check.mjs", |
| 19 | "check:policy:fix": "node tools/scripts/repo-policy-check.mjs --fix", |
| 20 | "clean": "fluid-build . -t clean", |
| 21 | "cli": "pnpm -C packages/cli exec npx --no .", |
| 22 | "elevate": "node tools/scripts/elevate.js", |
| 23 | "getKeys": "node tools/scripts/getKeys.mjs", |
| 24 | "lint": "fluid-build . -t prettier", |
| 25 | "lint:fix": "pnpm run prettier:fix", |
| 26 | "prettier": "prettier --check .", |
| 27 | "prettier:fix": "prettier --write .", |
| 28 | "rebuild": "fluid-build . -t build --rebuild", |
| 29 | "regen": "pnpm -C packages/cli exec npm run regen", |
| 30 | "regen:builtin": "pnpm -C packages/cli exec npm run regen:builtin", |
| 31 | "shell": "pnpm -C packages/shell exec npm run dev", |
| 32 | "test": "pnpm run -r --parallel --stream test", |
| 33 | "test:full": "pnpm run -r --parallel --stream test:full" |
| 34 | }, |
| 35 | "devDependencies": { |
| 36 | "@fluidframework/build-tools": "^0.35.0-247707", |
| 37 | "@types/node": "^20.8.9", |
| 38 | "concurrently": "^8.2.2", |
| 39 | "markdown-link-check": "^3.12.2", |
| 40 | "prettier": "^3.2.5" |
| 41 | }, |
| 42 | "packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1", |
| 43 | "engines": { |
| 44 | "node": ">=18", |
| 45 | "pnpm": ">=9" |
| 46 | }, |
| 47 | "peerDependencyRules": { |
| 48 | "ignoreMissing": [ |
| 49 | "eslint" |
| 50 | ] |
| 51 | } |
| 52 | } |
| 53 | |