microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/astro-utils/package.json
42lines · modecode
| 1 | { |
| 2 | "name": "@typespec/astro-utils", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "type": "module", |
| 6 | "exports": { |
| 7 | ".": "./src/index.ts", |
| 8 | "./sidebar": "./src/sidebar/index.ts", |
| 9 | "./shiki": "./src/shiki/index.ts", |
| 10 | "./components/*": "./src/components/*", |
| 11 | "./utils/*": "./src/utils/*.ts", |
| 12 | "./css/*": "./src/css/*", |
| 13 | "./expressive-code/*": "./dist/expressive-code/*.js", |
| 14 | "./llmstxt": "./src/llmstxt/index.ts", |
| 15 | "./llmstxt/schema": "./src/llmstxt/schema.ts" |
| 16 | }, |
| 17 | "files": [ |
| 18 | "src", |
| 19 | "index.ts" |
| 20 | ], |
| 21 | "scripts": { |
| 22 | "build": "astro check && tsc -p ./tsconfig.build.json", |
| 23 | "watch": "tsc -p ./tsconfig.build.json --watch" |
| 24 | }, |
| 25 | "devDependencies": { |
| 26 | "@types/react": "~19.2.7", |
| 27 | "astro": "^5.16.5" |
| 28 | }, |
| 29 | "peerDependencies": { |
| 30 | "astro": "^5.16.5" |
| 31 | }, |
| 32 | "dependencies": { |
| 33 | "@astrojs/check": "^0.9.4", |
| 34 | "@astrojs/starlight": "^0.37.0", |
| 35 | "@expressive-code/core": "^0.41.2", |
| 36 | "@typespec/playground": "workspace:^", |
| 37 | "astro-expressive-code": "^0.41.2", |
| 38 | "pathe": "^2.0.3", |
| 39 | "react": "~19.2.3", |
| 40 | "typescript": "~5.9.3" |
| 41 | } |
| 42 | } |
| 43 | |