microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-7547

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/astro-utils/package.json

40lines · 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 },
15 "files": [
16 "src",
17 "index.ts"
18 ],
19 "scripts": {
20 "build": "astro check && tsc -p ./tsconfig.build.json",
21 "watch": "tsc -p ./tsconfig.build.json --watch"
22 },
23 "devDependencies": {
24 "@types/react": "~18.3.11",
25 "astro": "^5.5.6"
26 },
27 "peerDependencies": {
28 "astro": "^5.5.6"
29 },
30 "dependencies": {
31 "@astrojs/check": "^0.9.4",
32 "@astrojs/starlight": "^0.35.1",
33 "@expressive-code/core": "^0.41.2",
34 "@typespec/playground": "workspace:^",
35 "astro-expressive-code": "^0.41.2",
36 "pathe": "^2.0.3",
37 "react": "~18.3.1",
38 "typescript": "~5.8.2"
39 }
40}
41