first commit

This commit is contained in:
James Brumond 2023-05-06 20:24:01 -07:00
commit 0b569ed9d1
Signed by: james
GPG Key ID: E8F2FC44BAA3357A
5 changed files with 3384 additions and 0 deletions

14
.editorconfig Normal file
View File

@ -0,0 +1,14 @@
root = true
[*]
indent_size = 4
indent_style = tab
[*.{js,ts,css,html}]
indent_size = 4
indent_style = tab
[*.{md,json,jsonc,yml,yaml,sql}]
indent_size = 2
indent_style = space

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
ARG NODE_VERSION
FROM node:${NODE_VERSION}-alpine
WORKDIR /doc-utils
COPY package.json package-lock.json /doc-utils/
RUN npm ci
ENV PATH="$PATH:/doc-utils/node_modules/.bin"
ENTRYPOINT [ "/bin/bash", "-l", "-c" ]

3349
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

7
package.json Normal file
View File

@ -0,0 +1,7 @@
{
"private": true,
"dependencies": {
"@doc-utils/color-themes": "^0.1.1",
"@doc-utils/markdown2html": "^0.1.0"
}
}