commit 4e76fe6e098bc9bbec4bc8164dd32ceb8c09e167 Author: Bram van den Heuvel Date: Sun Nov 3 13:10:28 2024 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..016b8d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# elm-package generated files +elm-stuff +# elm-repl generated files +repl-temp-* +# VScode settings +.vscode/ + +# Elm output +index.html +elm.js + +# Elm configurations +elm-*.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff9a6a6 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Matrix Plier + +Matrix Plier is a small-scale Matrix client with the focus on debugging, +exploring and viewing a Matrix user. + +This Matrix client is largely inspired by +[Matrix Wrench](https://gitlab.com/jaller94/matrix-wrench). diff --git a/elm.json b/elm.json new file mode 100644 index 0000000..c67a3ec --- /dev/null +++ b/elm.json @@ -0,0 +1,44 @@ +{ + "type": "application", + "source-directories": [ + "src" + ], + "elm-version": "0.19.1", + "dependencies": { + "direct": { + "Orasund/elm-ui-widgets": "3.4.0", + "avh4/elm-color": "1.0.0", + "elm/browser": "1.0.2", + "elm/core": "1.0.5", + "elm/html": "1.0.0", + "icidasset/elm-material-icons": "11.0.0", + "kudzu-forest/elm-constant-time-queue": "1.4.0", + "mdgriffith/elm-ui": "1.1.8", + "noordstar/elm-iddict": "1.0.1", + "noordstar/elm-matrix-sdk-beta": "3.6.0", + "noordstar/elm-palette": "1.0.0" + }, + "indirect": { + "elm/bytes": "1.0.8", + "elm/file": "1.0.5", + "elm/http": "2.0.0", + "elm/json": "1.1.3", + "elm/parser": "1.1.0", + "elm/regex": "1.0.0", + "elm/svg": "1.0.1", + "elm/time": "1.0.0", + "elm/url": "1.0.0", + "elm/virtual-dom": "1.0.3", + "elm-community/intdict": "3.1.0", + "fredcy/elm-parseint": "2.0.1", + "micahhahn/elm-safe-recursion": "2.0.0", + "miniBill/elm-fast-dict": "1.2.1", + "noahzgordon/elm-color-extra": "1.0.2", + "turboMaCk/queue": "1.1.0" + } + }, + "test-dependencies": { + "direct": {}, + "indirect": {} + } +}