-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·64 lines (64 loc) · 3.03 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
{
"author": "Sunghyun Cho <[email protected]>",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.5%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@docusaurus/core": "^3.5.1",
"@docusaurus/plugin-client-redirects": "^3.5.1",
"@docusaurus/preset-classic": "^3.5.1",
"@docusaurus/theme-classic": "^3.5.1",
"@docusaurus/theme-common": "^3.5.1",
"@docusaurus/theme-mermaid": "^3.5.1",
"@giscus/react": "^3.0.0",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-wrap-balancer": "^1.1.1",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0",
"swc-loader": "^0.2.6"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.5.1",
"@docusaurus/tsconfig": "^3.5.1",
"@docusaurus/types": "^3.5.1",
"@types/node": "^22.2.0",
"prettier": "^3.3.3"
},
"license": "MIT",
"main": "src/index.tsx",
"name": "cho-sh",
"repository": "https://github.com/anaclumos/extracranial.git",
"scripts": {
"build": "$npm_execpath run ready && $npm_execpath run format && DOCUSAURUS_PERF_LOGGER=true NODE_OPTIONS=\"--max-old-space-size=327680\" docusaurus build",
"clear": "rm -rf 'blog' && rm -rf 'docs' && rm -rf '**/*.config.js' && rm -rf '**/*.config.js.map' && rm -f 'docusaurus.config.js.map' && rm -f 'docusaurus.config.js' && rm -rf 'i18n /**/*.md' && cp tools/안녕.md i18n/ko/docusaurus-plugin-content-docs/current/Hey.md && rm -rf 'i18n /**/*.png' && rm -rf 'i18n /**/*.svg' && rm -rf 'i18n /**/*.jpg' && rm -rf 'i18n /**/*.jpeg' && rm -rf .docusaurus && rm -rf build && rm -rf .cache",
"serve": "docusaurus serve",
"dev": "$npm_execpath run ready && $npm_execpath run format && docusaurus start",
"ko": "$npm_execpath run ready && $npm_execpath run format && docusaurus start --locale ko",
"format": "prettier --log-level silent --config .prettierrc -w '**/*.{ts,tsx,json,md,mdx,css,scss,html,yml,yaml,mts,mjs,cts,cjs,js,jsx,xml}'",
"qa:start": "$npm_execpath run ready && $npm_execpath run format && $npm_execpath run build && $npm_execpath serve",
"readme": "cp tools/README.src.md README.md && printf \"\n\n## Last updated \n\n$(date)\n\" >> README.md",
"ready": "$npm_execpath run clear && python3 tools/sanitize.py && python3 tools/process-blog.py && python3 tools/process-docs.py && python3 tools/process-backlinks.py && python3 tools/img-alt-to-figcaption.py",
"save": "$npm_execpath ready && $npm_execpath run readme && $npm_execpath run scc && $npm_execpath run format && git add . && git commit -m 'wrote something' && git push",
"scc": "printf '\n## Stats\n' >> README.md && printf '\n```\n' >> README.md && scc . >> README.md && printf '```\n' >> README.md",
"write-translations": "docusaurus write-translations && docusaurus write-translations --locale ko"
},
"trustedDependencies": [
"@swc/core",
"core-js",
"core-js-pure",
"esbuild",
"workerd"
],
"version": "1.0.0"
}