-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "auth-wiki",
"type": "module",
"private": true,
"version": "0.0.1",
"scripts": {
"prepare": "playwright install --with-deps chromium",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"build:dev": "astro check && SKIP_RESOURCE_FETCH=1 astro build",
"test": "vitest",
"preview": "astro preview",
"astro": "astro",
"wrangler": "wrangler",
"translate": "node ./translate.mjs"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^6.0.1",
"@astrojs/mdx": "^3.1.9",
"@astrojs/sitemap": "^3.2.1",
"@astrolib/seo": "1.0.0-beta.8",
"@vitest/coverage-v8": "2.1.8",
"any-ascii": "^0.3.2",
"arg": "^5.0.2",
"astro": "^4.16.18",
"astro-i18n-aut": "^0.7.0",
"astro-icon": "^1.1.4",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"https-proxy-agent": "^7.0.5",
"listr2": "^8.2.5",
"open-graph-scraper": "^6.8.2",
"openai": "^4.71.0",
"p-map": "^7.0.2",
"picocolors": "^1.1.1",
"playwright": "^1.48.2",
"rehype-mermaid": "^3.0.0",
"remark-custom-header-id": "^1.0.0",
"typescript": "^5.5.4",
"vitest": "2.1.8",
"wrangler": "^3.99.0"
},
"pnpm": {
"overrides": {
"mermaid-isomorphic": "github:silverhand-io/mermaid-isomorphic#c081c30"
}
}
}