-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.84 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.84 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "aspire.dev",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.30.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/aspire.dev.git",
"directory": "src/frontend"
},
"bugs": {
"url": "https://github.com/microsoft/aspire.dev/issues"
},
"homepage": "https://github.com/microsoft/aspire.dev#readme",
"scripts": {
"git-env": "node ./scripts/write-git-env.mjs",
"check-data": "node ./scripts/check-data-files.mjs",
"dev": "pnpm git-env && pnpm check-data && astro dev",
"dev:host": "pnpm git-env && pnpm check-data && astro dev --host",
"start": "pnpm git-env && pnpm check-data && astro dev",
"start:host": "pnpm git-env && pnpm check-data && astro dev --host",
"build": "pnpm git-env && astro build",
"build:production": "pnpm git-env && astro build --mode production",
"preview": "astro preview",
"preview:host": "astro preview --host",
"astro": "pnpm git-env && astro",
"lint": "eslint . --max-warnings 0",
"format": "prettier -w --cache --plugin prettier-plugin-astro .",
"update:all": "pnpm update:integrations && pnpm update:github-stats && pnpm update:samples",
"update:integrations": "node ./scripts/update-integrations.js",
"update:ts-api": "node ./scripts/update-ts-api.js",
"update:github-stats": "node ./scripts/update-github-stats.js",
"update:samples": "node ./scripts/update-samples.js"
},
"dependencies": {
"@astro-community/astro-embed-vimeo": "^0.3.12",
"@astro-community/astro-embed-youtube": "^0.5.10",
"@astrojs/rss": "^4.0.18",
"@astrojs/starlight": "^0.38.2",
"@astrojs/starlight-docsearch": "^0.7.0",
"@catppuccin/starlight": "^2.0.1",
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
"@expressive-code/plugin-line-numbers": "^0.41.7",
"@fontsource-variable/fira-code": "^5.2.7",
"@fontsource-variable/outfit": "^5.2.7",
"@fontsource-variable/rubik": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"@jop-software/astro-cookieconsent": "^3.0.1",
"@lunariajs/core": "^0.1.1",
"@lunariajs/starlight": "^0.1.1",
"asciinema-player": "^3.15.1",
"astro": "^6.1.2",
"astro-mermaid": "^2.0.1",
"astro-tooltips": "^0.6.2",
"marked": "^17.0.5",
"mermaid": "^11.13.0",
"preact": "^10.29.0",
"remark-directive": "^4.0.0",
"sharp": "^0.34.5",
"starlight-contributor-list": "^0.4.0",
"starlight-github-alerts": "^0.2.0",
"starlight-image-zoom": "^0.14.1",
"starlight-kbd": "^0.4.0",
"starlight-links-validator": "^0.21.0",
"starlight-llms-txt": "^0.8.0",
"starlight-page-actions": "^0.5.0",
"starlight-scroll-to-top": "^0.4.0",
"starlight-sidebar-topics": "^0.7.1",
"vanilla-cookieconsent": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/cli": "^0.1.1",
"astro-embed": "^0.12.0",
"astro-vtbot": "^2.1.12",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"http-proxy-agent": "^8.0.0",
"https-proxy-agent": "^8.0.0",
"node-fetch": "^3.3.2",
"preact": "^10.29.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.58.0"
},
"pnpm": {
"overrides": {
"@anthropic-ai/claude-code@<2.0.31": ">=2.0.31",
"ajv@<6.14.0": "6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0",
"devalue@<5.6.4": ">=5.6.4",
"dompurify@<3.3.2": ">=3.3.2",
"fast-xml-parser@<5.5.7": ">=5.5.7",
"flatted@<3.4.2": ">=3.4.2",
"h3@<1.15.9": ">=1.15.9",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"seroval": ">=1.4.1",
"lodash-es@>=4.0.0 <=4.17.22": ">=4.17.23",
"minimatch@<10.2.3": ">=10.2.3",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"simple-git@<3.32.3": ">=3.32.3",
"svgo@=4.0.0": ">=4.0.1"
}
}
}