microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-bad-diagnostics-mixed-constraints

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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": "node -e \"if(process.env.TYPESPEC_SKIP_WEBSITE_BUILD==='true'){console.log('Skipping astro-utils build');process.exit(0)}else{process.exit(1)}\" || (astro check && tsc -p ./tsconfig.build.json)",
23 "watch": "tsc -p ./tsconfig.build.json --watch"
24 },
25 "devDependencies": {
26 "@types/react": "catalog:",
27 "astro": "catalog:"
28 },
29 "peerDependencies": {
30 "astro": "catalog:"
31 },
32 "dependencies": {
33 "@astrojs/check": "catalog:",
34 "@astrojs/starlight": "catalog:",
35 "@expressive-code/core": "catalog:",
36 "@typespec/playground": "workspace:^",
37 "astro-expressive-code": "catalog:",
38 "pathe": "catalog:",
39 "react": "catalog:",
40 "typescript": "catalog:"
41 }
42}
43