Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions offlinedocs/.eslintrc.json

This file was deleted.

36 changes: 1 addition & 35 deletions offlinedocs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,2 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
node_modules
*.tsbuildinfo

# content
public/images/
4 changes: 3 additions & 1 deletion offlinedocs/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
**/pnpm-lock.yaml
node_modules
pnpm-lock.yaml
*.tsbuildinfo
6 changes: 0 additions & 6 deletions offlinedocs/next-env.d.ts

This file was deleted.

8 changes: 0 additions & 8 deletions offlinedocs/next.config.js

This file was deleted.

50 changes: 9 additions & 41 deletions offlinedocs/package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,28 @@
{
"name": "coder-docs-generator",
"private": true,
"description": "Pure sync and MDX modules for the offline Coder documentation bundle: content transforms, route and ordering logic, and remark/rehype plugins.",
"scripts": {
"dev": "pnpm copy-images && next dev",
"build": "next build",
"start": "next start",
"export": "pnpm copy-images && next build",
"copy-images": "sh ./scripts/copyImages.sh",
"lint": "pnpm run lint:types",
"lint:types": "tsc --noEmit",
"format": "prettier --cache --write './**/*.{css,html,js,json,jsx,md,ts,tsx,yaml,yml}'",
"format:check": "prettier --cache --check './**/*.{css,html,js,json,jsx,md,ts,tsx,yaml,yml}'"
"test": "node --test 'scripts/**/*.test.mjs' && node --import tsx --test 'src/mdx-plugins/**/*.test.ts'",
"lint": "tsc --noEmit",
"format": "prettier --cache --write './**/*.{js,mjs,ts,json,yaml,yml}'",
"format:check": "prettier --cache --check './**/*.{js,mjs,ts,json,yaml,yml}'"
},
"dependencies": {
"@chakra-ui/react": "2.10.10",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"archiver": "8.0.0",
"framer-motion": "^10.18.0",
"front-matter": "4.0.2",
"lodash": "4.18.1",
"next": "15.5.23",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.7.0",
"react-markdown": "10.1.0",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"sanitize-html": "2.17.6"
"fumadocs-core": "16.10.5"
},
"devDependencies": {
"@types/lodash": "4.17.25",
"@types/node": "22.20.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/sanitize-html": "2.16.1",
"eslint": "8.57.1",
"eslint-config-next": "14.2.35",
"prettier": "3.9.6",
"prettier": "3.9.4",
"tsx": "4.23.12",
"typescript": "6.0.3"
},
"engines": {
"npm": ">=9.0.0 <10.0.0",
"node": ">=22.0.0 <25.0.0"
},
"pnpm": {
"overrides": {
"@babel/runtime": "7.26.10",
"brace-expansion": "1.1.13",
"minimatch": "5.1.8",
"glob@>=10": "10.5.0",
"postcss": "8.5.10",
"js-yaml": "3.14.2",
"yaml": "1.10.3",
"flatted": "3.4.2",
"mdast-util-to-hast": "13.2.1"
"js-yaml": "4.1.1"
}
}
}
Loading
Loading