├── .github └── CODEOWNERS ├── .gitignore ├── .gitmodules ├── .npmignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── artwork └── hinoki-logo.svg ├── docs ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _data │ └── integrators.yml ├── css │ └── main.scss └── index.html ├── package.json ├── src ├── bin │ └── cli.ts ├── server.ts └── validateDocument.ts ├── tsconfig.json └── types ├── index.d.ts └── wist └── index.d.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @nishtahir @vannuysm -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/README.md -------------------------------------------------------------------------------- /artwork/hinoki-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/artwork/hinoki-logo.svg -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/integrators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/_data/integrators.yml -------------------------------------------------------------------------------- /docs/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/css/main.scss -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/package.json -------------------------------------------------------------------------------- /src/bin/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/src/bin/cli.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/validateDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/src/validateDocument.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willowtreeapps/hinoki/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /types/wist/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@willowtreeapps/wist'; --------------------------------------------------------------------------------