forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@typespec/website",
"type": "module",
"private": true,
"version": "0.0.1",
"scripts": {
"clean": "rimraf ./dist ./temp ./.astro",
"dev": "astro dev",
"start": "astro dev",
"build": "tsx ./.scripts/build.ts",
"build:web": "pnpm regen-all-packages-docs && astro check --minimumFailingSeverity warning && astro build",
"preview": "astro preview",
"astro": "astro",
"update-playground-versions": "tsx ./.scripts/update-playground-versions.ts",
"regen-docs": "tsx ./.scripts/regen-compiler-docs.ts",
"regen-all-packages-docs": "pnpm -w --filter \"@typespec/website...\" --filter \"!@typespec/monorepo\" run regen-docs"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.1.6",
"@astrojs/starlight": "^0.31.1",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.5",
"@docsearch/css": "^3.7.0",
"@docsearch/js": "^3.7.0",
"@expressive-code/core": "^0.40.1",
"@fluentui/react-components": "~9.57.0",
"@fluentui/react-icons": "^2.0.271",
"@typespec/compiler": "workspace:~",
"@typespec/playground": "workspace:~",
"astro": "^5.1.8",
"astro-rehype-relative-markdown-links": "^0.15.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"es-module-shims": "~2.0.5",
"prism-react-renderer": "^2.4.0",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.14",
"typescript": "~5.7.3"
},
"devDependencies": {
"@types/react": "~18.3.11",
"@types/react-dom": "~18.3.0",
"@types/remark-heading-id": "^1.0.0",
"@typespec/astro-utils": "workspace:~",
"@typespec/compiler": "workspace:~",
"@typespec/events": "workspace:~",
"@typespec/http": "workspace:~",
"@typespec/internal-build-utils": "workspace:~",
"@typespec/json-schema": "workspace:~",
"@typespec/openapi": "workspace:~",
"@typespec/openapi3": "workspace:~",
"@typespec/playground-website": "workspace:*",
"@typespec/protobuf": "workspace:~",
"@typespec/rest": "workspace:~",
"@typespec/spec": "workspace:*",
"@typespec/spec-dashboard": "workspace:~",
"@typespec/sse": "workspace:~",
"@typespec/streams": "workspace:~",
"@typespec/tspd": "workspace:~",
"@typespec/versioning": "workspace:~",
"@typespec/xml": "workspace:~",
"astro-expressive-code": "^0.40.1",
"rehype-mermaid": "^3.0.0",
"remark-heading-id": "^1.0.1",
"rimraf": "~6.0.1"
}
}