-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 3.19 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
{
"author": "Sunghyun Cho <hey@cho.sh>",
"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.7.0",
"@docusaurus/faster": "^3.7.0",
"@docusaurus/plugin-client-redirects": "^3.7.0",
"@docusaurus/plugin-content-blog": "^3.7.0",
"@docusaurus/plugin-content-docs": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@docusaurus/theme-classic": "^3.7.0",
"@docusaurus/theme-common": "^3.7.0",
"@docusaurus/theme-mermaid": "^3.7.0",
"@giscus/react": "^3.1.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-wrap-balancer": "^1.1.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/tsconfig": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"@types/node": "^22.10.7",
"prettier": "^3.4.1",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^37.0.0"
},
"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 && NODE_OPTIONS=\"--max-old-space-size=8192\" docusaurus build",
"clear": "rm -rf 'blog' && rm -rf 'docs' && 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 'i18n /**/*.gif'",
"dev": "$npm_execpath run ready && $npm_execpath run format && docusaurus start",
"format": "prettier --config .prettierrc -w '**/*.{ts,tsx,json,md,mdx,css,scss,html,yml,yaml,mts,mjs,cts,cjs,js,jsx,xml}'",
"ko": "$npm_execpath run ready && $npm_execpath run format && docusaurus start --locale ko",
"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",
"serve": "docusaurus serve",
"start": "docusaurus serve",
"write-translations": "docusaurus write-translations && docusaurus write-translations --locale ko",
"stylelint": "stylelint '**/*.css'",
"swizzle": "docusaurus swizzle -t"
},
"trustedDependencies": [
"@swc/core",
"core-js",
"core-js-pure",
"esbuild",
"workerd"
],
"version": "1.0.0"
}