forked from biomejs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.8 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@biomejs/website",
"private": true,
"scripts": {
"init:biome": "git -c submodule.\"xtask/coverage/Typescript\".update=none -c submodule.\"xtask/coverage/babel\".update=none -c submodule.\"xtask/coverage/test262\".update=none submodule update --init --recursive",
"checkout:biome": "cd biome && git checkout",
"start": "astro dev",
"start:playground": "pnpm build:wasm-dev && pnpm start",
"format": "pnpm biome format --write .",
"check": "pnpm biome check --apply .",
"tsc": "tsc --skipLibCheck",
"build": "pnpm build:wasm && pnpm build:js",
"build:js": "astro build",
"build:wasm-common": "wasm-pack build --out-dir ../../packages/@biomejs/wasm-web --target web --scope biomejs",
"build:wasm": "pnpm build:wasm-common --release ./biome/crates/biome_wasm",
"build:wasm-dev": "pnpm build:wasm-common --profiling ./biome/crates/biome_wasm",
"preview": "astro preview",
"textlint": "textlint './src/content/docs/ja/**/*.{md,mdx}'",
"textlint:fix": "textlint --fix './src/content/docs/ja/**/*.{md,mdx}'",
"codegen": "cargo run --manifest-path codegen/Cargo.toml",
"codegen:rules": "pnpm codegen rules",
"codegen:release-files": "pnpm codegen release-files",
"codegen:metadata": "pnpm codegen metadata",
"codegen:all": "pnpm codegen all"
},
"devDependencies": {
"@astrojs/netlify": "5.2.1",
"@astrojs/prism": "3.1.0",
"@astrojs/react": "3.3.4",
"@astrojs/rss": "4.0.6",
"@astrojs/starlight": "0.23.1",
"@biomejs/biome": "1.7.1",
"@biomejs/wasm-web": "link:./biome/packages/@biomejs/wasm-web",
"@codemirror/lang-css": "6.2.1",
"@codemirror/lang-javascript": "6.2.2",
"@codemirror/lang-json": "6.0.1",
"@codemirror/lint": "6.7.1",
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.26.3",
"@docsearch/css": "3.6.0",
"@docsearch/js": "3.6.0",
"@fontsource/inter": "5.0.18",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@uiw/react-codemirror": "4.22.0",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.19",
"codemirror-lang-rome-ast": "0.0.6",
"fast-diff": "1.3.0",
"hast-util-to-html": "9.0.1",
"hast-util-to-string": "3.0.0",
"hastscript": "9.0.0",
"html-escaper": "3.0.3",
"lang-rome-formatter-ir": "0.0.2",
"mdast-util-to-hast": "13.1.0",
"mermaid": "10.9.0",
"postcss": "8.4.38",
"prettier": "3.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"remark-toc": "9.0.0",
"sass": "1.76.0",
"sharp": "0.33.3",
"textlint": "14.0.4",
"textlint-rule-preset-jtf-style": "2.3.14",
"textlint-rule-prh": "6.0.0",
"typescript": "5.4.5",
"vite": "5.2.11",
"vite-plugin-svgr": "4.2.0"
},
"dependencies": {
"astro": "^4.8.6",
"astro-og-canvas": "^0.5.0",
"canvaskit-wasm": "^0.39.1"
},
"packageManager": "pnpm@8.15.8"
}