├── .commitlintrc.json ├── .editorconfig ├── .github └── workflows │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.cjs ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── demo ├── example.jpg └── index.html ├── eslint.config.cjs ├── package.json └── src ├── tree.js └── treejs.css /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx --no-install commitlint --edit "$1" 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx --no-install lint-staged 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/README.md -------------------------------------------------------------------------------- /demo/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/demo/example.jpg -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/demo/index.html -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/package.json -------------------------------------------------------------------------------- /src/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/src/tree.js -------------------------------------------------------------------------------- /src/treejs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-thalmann/treejs/HEAD/src/treejs.css --------------------------------------------------------------------------------