microsoft/TypeAgent
Publicmirrored from https://github.com/microsoft/TypeAgentAvailable
ts/package.json
55lines · 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 | "api": "pnpm -C packages/api exec npm run dev", |
| 17 | "build": "fluid-build . -t build", |
| 18 | "check:link": "git ls-tree -r --name-only HEAD .. | grep \\.md | xargs markdown-link-check", |
| 19 | "check:policy": "node tools/scripts/repo-policy-check.mjs", |
| 20 | "check:policy:fix": "node tools/scripts/repo-policy-check.mjs --fix", |
| 21 | "clean": "fluid-build . -t clean", |
| 22 | "cli": "pnpm -C packages/cli exec npx --no .", |
| 23 | "elevate": "node tools/scripts/elevate.js", |
| 24 | "getKeys": "node tools/scripts/getKeys.mjs", |
| 25 | "knowledgeVisualizer": "pnpm -C packages/knowledgeVisualizer exec npm run start", |
| 26 | "kv": "pnpm -C packages/knowledgeVisualizer exec npm run start", |
| 27 | "lint": "fluid-build . -t prettier", |
| 28 | "lint:fix": "pnpm run prettier:fix", |
| 29 | "prettier": "prettier --check .", |
| 30 | "prettier:fix": "prettier --write .", |
| 31 | "rebuild": "fluid-build . -t build --rebuild", |
| 32 | "regen": "pnpm -C packages/cli exec npm run regen", |
| 33 | "regen:builtin": "pnpm -C packages/cli exec npm run regen:builtin", |
| 34 | "shell": "pnpm -C packages/shell exec npm run dev", |
| 35 | "test": "pnpm run -r --parallel --stream test", |
| 36 | "test:full": "pnpm run -r --parallel --stream test:full" |
| 37 | }, |
| 38 | "devDependencies": { |
| 39 | "@fluidframework/build-tools": "^0.35.0-247707", |
| 40 | "@types/node": "^20.8.9", |
| 41 | "concurrently": "^8.2.2", |
| 42 | "markdown-link-check": "^3.12.2", |
| 43 | "prettier": "^3.2.5" |
| 44 | }, |
| 45 | "packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee", |
| 46 | "engines": { |
| 47 | "node": ">=18", |
| 48 | "pnpm": ">=9" |
| 49 | }, |
| 50 | "peerDependencyRules": { |
| 51 | "ignoreMissing": [ |
| 52 | "eslint" |
| 53 | ] |
| 54 | } |
| 55 | } |
| 56 | |