forked from logto-io/auth-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"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.6",
"@astrojs/markdown-remark": "^6.3.10",
"@astrojs/mdx": "^4.3.13",
"@astrojs/sitemap": "^3.6.0",
"@astrolib/seo": "1.0.0-beta.8",
"@vitest/coverage-v8": "3.2.4",
"any-ascii": "^0.3.2",
"arg": "^5.0.2",
"astro": "^5.16.5",
"astro-i18n-aut": "^0.7.3",
"astro-icon": "^1.1.5",
"commander": "^13.0.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.9.3",
"vitest": "3.2.4",
"wrangler": "^3.114.17"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
],
"overrides": {
"esbuild@<0.25.0": "^0.25.0",
"mermaid-isomorphic": "github:silverhand-io/mermaid-isomorphic#c081c30",
"vite@<6.4.1": "^6.4.1",
"glob@>=10.2.0 <10.5.0": "^10.5.0",
"diff@<8.0.3": "^8.0.3",
"undici@<6.23.0": "^6.23.0",
"devalue@>=5.1.0 <5.6.2": "^5.6.2",
"h3@<=1.15.4": "^1.15.5",
"devalue@>=5.3.0 <=5.6.1": "^5.6.2",
"tar@<7.5.8": ">=7.5.8",
"lodash-es@>=4.0.0 <=4.17.22": "^4.17.23",
"lodash@>=4.0.0 <=4.17.22": "^4.17.23",
"axios@>=1.0.0 <=1.13.4": ">=1.13.5",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6"
},
"patchedDependencies": {
"playwright-core@1.48.2": "patches/playwright-core@1.48.2.patch"
}
}
}